diff options
author | Aaron Parecki <aaron@parecki.com> | 2016-12-17 16:05:29 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2016-12-17 16:05:29 -0800 |
commit | 53964f2622828bc5b67546dbc24bb455e4d165cb (patch) | |
tree | 7a6b0e15c8623d497897fb76bb382bacfc79aeb8 /views/docs.php | |
parent | 0c78cd2f2bfc137925164eef5a6f4cc84c4c8e8a (diff) |
update docs on syndicate-to response
Diffstat (limited to 'views/docs.php')
-rw-r--r-- | views/docs.php | 25 |
1 files changed, 16 insertions, 9 deletions
diff --git a/views/docs.php b/views/docs.php index 63d0ce1..7c6757d 100644 --- a/views/docs.php +++ b/views/docs.php @@ -34,7 +34,7 @@ <h2 id="syndication">Syndication Targets</h2> - <p>You can provide a list of supported syndication targets that will appear as checkboxes when you are creating a new post.</p> + <p>You can provide a list of supported <a href="https://www.w3.org/TR/micropub/#syndication-targets">syndication targets</a> that will appear as checkboxes when you are creating a new post.</p> <p>To do this, your Micropub endpoint will need to respond to a GET request containing a query string of <code>q=syndicate-to</code>. This request will be made with the access token that was generated for this app, so you can choose which syndication targets you want to allow this app to use.</p> @@ -44,17 +44,24 @@ Authorization: Bearer xxxxxxxxxx HTTP/1.1 200 OK -Content-type: application/x-www-form-urlencoded - -syndicate-to[]=twitter.com%2Faaronpk&syndicate-to[]=facebook.com%2Faaronpk +Content-type: application/json + +{ + "syndicate-to": [ + { + "uid": "https://twitter.com/aaronpk", + "name": "twitter.com/aaronpk" + }, + { + "uid": "https://news.indieweb.org/en", + "name": "IndieNews" + } + ] +} </code></pre> - <p>The response should be a form-encoded reply with an array, <code>syndicate-to</code> of all the supported syndication targets. The actual values are up to your Micropub endpoint, but a good convention is to use the domain name of the service (e.g. twitter.com), or domain name and username (e.g. twitter.com/aaronpk).</p> - - <p>If you do include the domain name, Quill will be able to show icons for recognized services next to the checkboxes.</p> + <p>The specific values of names and uids are up to your Micropub endpoint, but a good convention is to use the domain name of the service (e.g. https://twitter.com), or domain name and username (e.g. https://twitter.com/aaronpk) for the uid, and a friendly name like "Twitter" or "twitter.com/aaronpk" as the name.</p> <p>Quill will check for your supported syndication targets when you sign in, but there is also a link on the new post screen to manually re-check if you'd like.</p> - - </div> |