-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
token management #1
Comments
You shouldn't need to turn the Wordpress site into an OAuth 1 server. Not sure why that would be helpful. |
@aaronpk i don't personally care whether it's oauth or something else under the covers, but i do need something that can mint, serve, verify, and manage tokens, right? honestly, my first pass will probably be to hard-code a single static token and use that for everything. i'd then add real token management later. even at that point though, i'd just as soon not build it myself. |
The wordpress plugin will need to be able to accept an access token in the HTTP header and verify it. The short path to implement this is to use the token endpoint I run at https://tokens.indieauth.com, that way you can just avoid all token management for now, and add that in to the plugin later. |
ooh, delegation, nice! thanks for the pointer. |
Nice! |
The WP-API team provides a OAuth 1 lib that should work independent/separate from the WP-API plugin https://github.com/WP-API/OAuth1
The text was updated successfully, but these errors were encountered: