Authorization Endpoint

The authorization endpoint tells this app where to direct your browser to sign you in.

Could not find your authorization endpoint!

You need to set your authorization endpoint in a <link> tag on your home page or in an HTTP header.

You can create your own authorization endpoint, but it's easier to use an existing service such as IndieAuth.com. To delegate to IndieAuth.com, you can use the code provided below.

<link rel="authorization_endpoint" href="https://indieauth.com/auth">

Link: <https://indieauth.com/auth>; rel="authorization_endpoint"

Token Endpoint

The token endpoint is where this app will make a request to get an access token after obtaining authorization.

Could not find your token endpoint!

You need to set your token endpoint in a <link> tag on your home page or in an HTTP header.

You will need to create a token endpoint for your website which can issue access tokens when given an authorization code.

<link rel="token_endpoint" href="https://michielbdejong.com/token">

Link: <https://michielbdejong.com/token>; rel="token_endpoint"

Micropub Endpoint

The Micropub endpoint is the URL this app will use to post new photos.

Could not find your Micropub endpoint!

You need to set your Micropub endpoint in a <link> tag on your home page or in an HTTP header.

You will need to create a Micropub endpoint for your website which can create posts on your site.

<link rel="micropub" href="https://michielbdejong.com/micropub">

Link: <https://michielbdejong.com/micropub>; rel="micropub"