Here we explore authenticating with OAuth 1.0 using Livecode. We begin by refactoring an old Twitter Library. Our experiment starts with The Noun Project API.
# Work in Progress
I'm currently working on the basics of getting the OAuth Signature working. For this we are comparing the signature with one provided by a succesful pos using Postman:
- Authorizing requests. - postman.com
# Twitter API
Twitter also provides OAuth 1.0 access, and now has good documentation:
- Flickr Authentication - flickr
- Twitter API
- OAuth 1.0a - twitter.com
- Percent encoding - twitter.com
- Getting access - twitter.com
- My Twitter Apps - twitter.com
# Oauth 1.0
- rfc5849 - ietf.org
- The Authorization Flow |... - wp-api.org
- About OAuth 1.0... - smartbear.com
- OAuth Core 1.0a - oauth.net
- An example OAuth 1.0... - commandlinefanatic.com
- Authentication - Insomnia - insomnia.rest
# See also