TomboFry / microlight

A fully IndieWeb-compatible PHP blogging engine
GNU Affero General Public License v3.0
37 stars 3 forks source link

Perform webmentions #18

Closed TomboFry closed 5 years ago

TomboFry commented 5 years ago

If a post is created as a reply, like, or repost, with a specified URL, a webmention to that URL should be performed.

This is done by making a request to the URL and parsing the response headers and body for any links with relation to "webmention" (eg. <link rel="webmention" href="http://example.com/webmention" />). See Aaron Parecki's article on the matter, specifically under the "Automatically Sending Webmentions" section.

TomboFry commented 5 years ago

The last two remaining tasks (updating, deleting posts) are dependant on #3 being completed, as there is currently no way to update posts.

This has been implemented

TomboFry commented 5 years ago

Completed in a51d595