Skip to content

jgarber623/indieweb-endpoints.cc

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
bin
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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/search?url=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/search?url=https://sixtwothree.org'

…or Wget:

wget --header 'Accept: application/json' --quiet -O - 'https://indieweb-endpoints.cc/search?url=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"
}

Improving IndieWeb Endpoints

You want to help make IndieWeb Endpoints better? Hell yeah! I like your enthusiasm. For more on how you can help, check out CONTRIBUTING.md.

Donations

If diving into Ruby isn't your thing, but you'd still like to support IndieWeb Endpoints, consider making a donation! Any amount—large or small—is greatly appreciated. As a token of my gratitude, I'll add your name to the Acknowledgments below.

Donate via Square Cash Donate via Paypal

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.