Skip to content

jgarber623/indieweb-endpoints.cc

Repository files navigation

IndieWeb Endpoints

Discover a URL's IndieAuth, Micropub, Microsub, and Webmention endpoints.

Build Deployment

Usage

There are a couple of ways you can use IndieWeb Endpoints:

You may point your browser at the website, enter a URL into the search form, and submit! You could also hack on the URL itself and throw something like this at your browser's URL bar:

https://indieweb-endpoints.cc/u/https://sixtwothree.org

Lastly, if you're comfortable working on the command line, you can query the service directly using a tool like curl:

curl --header "Accept: application/json" --silent "https://indieweb-endpoints.cc/u/https://sixtwothree.org"

…or Wget:

wget --header "Accept: application/json" --quiet -O - "https://indieweb-endpoints.cc/u/https://sixtwothree.org"

The above command will return a JSON object with the results of the search:

{
  "authorization_endpoint": "https://indieauth.com/auth",
  "micropub": null,
  "microsub": "https://aperture.p3k.io/microsub/219",
  "redirect_uri": [
    "https://sixtwothree.org/auth"
  ],
  "token_endpoint": "https://tokens.indieauth.com/token",
  "webmention": "https://sixtwothree.org/webmentions"
}

Acknowledgments

IndieWeb Endpoints wouldn't exist without the hard work put in by everyone involved in the IndieWeb movement.

Text is set using Alfa Slab One and Gentium Book Basic which are provided by Google Fonts. Iconography is from Font Awesome's icon set.

IndieWeb Endpoints is written and maintained by Jason Garber.

License

IndieWeb Endpoints is freely available under the MIT License. Use it, learn from it, fork it, improve it, change it, tailor it to your needs.