Oauth 2.0

OAuth 2.0

ongoing

things required to use OAuth 2.0

TODO

workflow

when you want to access your friend/client's data through WEBSITE A's API with Oauth2, you need to get them to give you permission (they will login themselves and tell WEBSITE A to give you permission), then you can only get the data that they allow you to have.

why go through all the trouble

Oauth Is based around the idea of not sharing usernames and passwords when sharing data between apps/websites. Instead of needing the user to key in site A’s username and password into site B to let site B get stuff from site A (dangerous because site B now has site A’s password), site B sends the user to site A to type the user/pw and then allow the user to decide how much permission to give site B, before sending the user back to site B.

python's OAuth