Signed In As

user->supported_post_types): ?>
me user->url; ?> (should be your URL)
Name
Photo
scope user->micropub_scope ?> (should be a space-separated list of permissions including "create")
micropub endpoint user->micropub_endpoint ?> (should be a URL)
media endpoint user->micropub_media_endpoint ? ''.$this->user->micropub_media_endpoint.'' : 'no media endpoint' ?>
supported post types
    user->supported_post_types, true); foreach($types as $type) { echo '
  • '.htmlspecialchars($type['name']).' ('.$type['type'].')
  • '; } ?>
access token user->micropub_access_token ?>
Clicking this button will tell your token endpoint to revoke the token, Quill will forget the access token stored, forget all cached endpoints, and sign you out. If you sign back in, you will start over and see the debugging screens and scope options again.

Syndication Targets

syndication_targets) { echo '
    '; foreach($this->syndication_targets as $syn) { echo '
  • ' . '' . '
  • '; } echo '
'; } else { ?>
No syndication targets were found on your site. Your server can provide a list of supported syndication targets that will appear as buttons here.

Channels

channels) { echo ''; } else { ?>
No channels were found on your site. Your server can provide a list of channels that will appear as buttons here.

Twitter

Connecting a Twitter account will automatically "favorite" and "retweet" tweets on Twitter when you favorite and retweet a Twitter URL in Quill.

Backwards Compatibility

You can customize some of the properties that are sent in the Micropub request to work with older software.

Slug
Choose the name of the field that the slug will be sent in. This should be set to mp-slug unless your software is using a custom property or the deprecated slug property.
Syndication
Choose the name of the field that the syndication values will be sent in. This should be set to mp-syndicate-to unless your software is using the deprecated syndicate-to property.
Send HTML Content user->micropub_optin_html_content ? 'checked="checked"' : '' ?>> When checked, content from Quill's HTML editor will be sent in a property called content[html] rather than just content. See the Micropub specification for more details.