A lot of folks (and IndieWeb guidance) still refer to RelMeAuth. This could be supported in Authl, although it might not be particularly straightforward. Idea for the flow:
- RelMeAuth provider has access to the Authl container
- For each
rel="me" link on the identity page, see if Authl supports it, and if so, use that
- Proxy the identity flow for the returned identity link
- Return the original URL as the profile page. Bonus: Fuse the identity provider's profile with the h-card profile?
OPTIONAL: It would be nice if Handler.handles_page is able to provide an extended name, e.g. "RelMeAuth (via Twitter)". Since handles_page currently returns bool it could be changed to return Union[bool,str] and if it's a str that's a signal that it overrides the name.
A lot of folks (and IndieWeb guidance) still refer to RelMeAuth. This could be supported in Authl, although it might not be particularly straightforward. Idea for the flow:
rel="me"link on the identity page, see if Authl supports it, and if so, use thatOPTIONAL: It would be nice if
Handler.handles_pageis able to provide an extended name, e.g. "RelMeAuth (via Twitter)". Sincehandles_pagecurrently returnsboolit could be changed to returnUnion[bool,str]and if it's astrthat's a signal that it overrides the name.