OAuth (Open Authorization) is a specification for client applications to access protected resources on behalf of a user. It was developed as an alternative to users handing out their login credentials to third-party applications.
4
votes
1answer
188 views
Rails service + OAuth
I'm having trouble structuring the logic of OAuth integration into my web app. In the app, a user creates a Report that consists of data from their Google Analytics ...
4
votes
1answer
24 views
Youtube OAuth security
I am working with Youtube OAuth for the first time and I am not that great when it comes to security. I got the following code and would like to hear if you guys can find any security issue:
...
1
vote
1answer
1k views
Facebook OAuth in WPF
I am developing a WPF application that requires me to get an Access Token from Facebook using oAuth. After much searching online, I came to the following conclusions:
OAuth must be done in a browser
...
10
votes
1answer
8k views
OAuth Provider token generation
I'm currently creating an OAuth provider in Java using Jersey. To the best of my knowledge Jersey does not provide a method to create oauth tokens so I'm creating my own.
For those unfamiliar with ...