X-Git-Url: http://git.squeep.com/?p=squeep-indieauth-helper;a=blobdiff_plain;f=README.md;h=fe3e36296cee72e413ba9d4b382c4a24c0f1a0ba;hp=47c8cc6fc5ba8637f9e8cd610478f70233348c71;hb=HEAD;hpb=e486f80a4e7a1f65498335e7408f3301c9e7cb44 diff --git a/README.md b/README.md index 47c8cc6..9a67a6d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # IndieAuth Helper -Just some abstractions for interacting with IndieAuth sites, basically wrapping axios and mf2 parsing. +Just some abstractions for interacting with IndieAuth sites, basically wrapping `got` and `microformats-parser` mf2 parsing, performing various validations according to the specification, and some other fiddly bits. This is currently quite opinionated, and likely is only really useful in the context of Squeep Framework Applications. @@ -9,8 +9,8 @@ Notable methods on the Communication class: - `static async generatePKCE(length)` Create a code and verifier for use in an IndieAuth transaction. -- `validateProfile(url)` - Check that a urls meets specification requirements to be a profile. +- `async validateProfile(url)` + Check that a url meets specification requirements to be a profile. - `async fetchProfile(urlObject)` Retrieve profile information from an endpoint. @@ -35,3 +35,6 @@ Notable methods on the Communication class: - `async deliverTicket(ticketEndpointUrlObj, resourceUrlObj, subjectUrlObj, ticket)` Submit a ticket offer. + +- `async redeemTicket(ticket, resourceUrlObj, issuerUrlObj)` + Exchange a ticket for an access token to the given resource.