The token endpoint is where this app will make a request to get an access token after obtaining authorization.
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:///token">
Link: <https:///token>; rel="token_endpoint"
The Micropub endpoint is the URL this app will use to post new photos.
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:///micropub">
Link: <https:///micropub>; rel="micropub"