OAuth (Open Authorization) is an open protocol to allow secure API authorization in a simple and standard method from desktop and web applications. OAuth 2.0 is the second version of the OAuth protocol.

learn more… | top users | synonyms

14
votes
1answer
1k views

Implementing OAuth 2.0 Authentication for My API

I've been using the Facebook Graph API (uses oauth 2.0 for authentication) successfully for a while now. I now need to write my own API which allows developers to connect to it in a similar fashion. ...
14
votes
3answers
593 views

Google App Engine OAuth endpoints throwing 400 in production

I implemented the experimental OAuth support for Google App Engine using Python, and have it working locally, but the endpoints are throwing a 400 when I deploy to appspot. For example, the url ...
13
votes
2answers
734 views

OAuth 2.0 provider implementation for Scala/Lift

Does anyone know of a OAuth 2.0 provider (server side) implementation for Scala/Lift? I see Scala 2.0 client, but no provider.
13
votes
3answers
1k views

Gem for oAuth2 Consumer AND Provider functionality in Rails 2.3.5

I'm struggling finding a usable gem which provides the following for a Rails 2.3.5 application: we want to protect out API with oAuth 2; therefore a Controller for creating access/request Tokens and ...
11
votes
5answers
5k views

OAuth 2.0 Service Provider .NET libraries

I'm currently investigating OAuth 2.0 Service Provider solutions for .NET (I appreciate that 2.0 isn't a complete spec). What libraries are people currently aware of, other than DotNetOpenAuth ?
10
votes
1answer
554 views

OAuth 2.0: Benefits and use cases — why?

Could anyone explain what's good about OAuth2 and why we should implement it? I ask because I'm a bit confused about it — here's my current thoughts: OAuth1 (more precisely HMAC) requests seem ...
10
votes
1answer
3k views

What is the correct way to refresh Facebook OAuth2 access token after it expires?

As I understand it, this is the basic process for new Facebook iframe canvas apps using the OAuth2 API in a nutshell: Redirect to (or have user click link to) app's authorization URL User authorizes ...
9
votes
1answer
257 views

Using Google OAuth2 from Silverlight out-of-browser application

I'm planning to access Google's APIs and do authentication using OAuth2. Since I'm going to access them from a Silverlight out-of-browser application I was wanting to know how to keep it secure ...
8
votes
3answers
500 views

OAuth 2.0 — What's new?

Could someone enumerate the main differences between OAuth 2.0 and previous versions? Or point me to good documentation. (Not the full OAuth 2.0 Protocol draft; I don't have time to read it.)
7
votes
2answers
358 views

CSRF state token does not match one provided FB PHP SDK 3.1.1 Oauth 2.0

My server logs show a "CSRF state token does not match one provided" error which seems to happen for almost every user. However, the users are created and/or authenticated and I am able to retrieve ...
7
votes
2answers
1k views

Play Framework appending #_=_ to redirect after Facebook auth via OAuth2?

I'm doing a simple redirect after calling OAuth2::retrieveAccessToken() with Play Framework. I'm having funny characters appended to the URL that I never put there, so the end result looks as follows: ...
7
votes
2answers
573 views

OAuth2 - Why do access tokens expire?

I am just getting started working with googles API and Oauth2. When the client authorizes my app I am given a "refresh token" and a short lived "access token". Now every time the access token expires, ...
7
votes
6answers
4k views

Rails 3. Building an oauth2 provider

I am developing an API in Ruby on Rails 3 and I would like to secure it with Oauth2. In other words, I need to create an Oauth provider. Is there a working gem for Rails 3 out there or perhaps a ...
7
votes
1answer
2k views

On a high level, how does OAuth 2 work?

As I understand it, the following chain of events occurs in OAuth 2 in order to Site A to access User X's information on Site B. Site A registers with Site B, and obtains a Secret and an ID. When ...
6
votes
2answers
170 views

Error with facebook verification code using coldfusion

I have a facebook application that was using a CFC I had found on RIAForge to authenticate the user/app and allow permissions (this one) but it no longer works. So I set about writing a version of ...
6
votes
1answer
196 views

Why should I transmit `client_secret` to obtain an `access_token`?

In order to obtain an access_token from Facebook, you have to transmit your app_id, the code you receive after the authorize request, and your app's secret_key. Why would I EVER transmit my secret ...
6
votes
1answer
910 views

Facebook OAuth: custom callback_uri parameters

I'd like to have a dynamic redirect URL for my Facebook OAuth2 integration. For example, if my redirect URL is this in my Facebook app: http://www.mysite.com/oauth_callback?foo=bar I'd like the ...
6
votes
1answer
835 views

What are Bearer Tokens and token_type in OAuth 2?

I'm trying to implement the Resource Owner & Password Credentials flow from the OAuth 2 spec. I'm having trouble understanding the token_type value that gets sent back with a valid response. In ...
6
votes
2answers
1k views

Using Google experimental implementation of OAuth 2.0 to access existing API endpoints

According to this documentation, process of receiving OAuth access token is straightforward. I would like to see a list of all available API endpoints that is ready to accept OAuth 2.0 access token. ...
6
votes
5answers
1k views

oauth2 python provider

Does anyone know of a Python lib for OAuth 2.0? Specifically one that includes functionality for creating providers.
6
votes
7answers
5k views

Is there a OAuth2 library for Java / Android already?

I don't want to code things that already exist...
6
votes
2answers
4k views

Is anyone using node.js with an OAuth2.0 authentication system?

Is there an OAuth2.0 library for Node.js, which is being used (or planned to be used) in a live, production system?
5
votes
1answer
117 views

Recommended configuration for both web client and mobile REST api security

I realize there are a ton of questions on this subject, and I have been researching this for a couple days now. I want to make sure my question is as specific as possible since I have yet to gain a ...
5
votes
1answer
165 views

List all Google Apps Profiles on PHP Site

I am trying to get a list of all Google Apps users of a domain onto a public PHP website (without visitors of the site needing to login or do anything). I have a basic understanding of what needs to ...
5
votes
1answer
131 views

Should clients get OAuth 2 access tokens using GET or POST?

The OAuth 2.0 draft v2-22 Section 3.2 says: The client MUST use the HTTP "POST" method when making access token requests. However, if you look at the Facebook and Foursquare OAuth2 ...
5
votes
1answer
346 views

FB auth.logout is being raised after being logged in using the “server-side-workflow” (OAuth 2.0)

NOTE: Our (web) application was working fine until we upgraded to the Oauth 2.0 workflow this past weekend. When a user "connects with facebook" to our (web) application we log them in to Facebook ...
5
votes
8answers
1k views

Decrypt OAuth 2.0 access token

Is it possible to decrypt Facebook's new OAuth 2.0 access_token ? I need to somehow get user_id and app_id from the access_token. PS: I need to get the user_id and app_id ONLY from the access_token ...
5
votes
2answers
366 views

best practice for storing oauth AND local authentication methods?

If I were to run a service that allowed users to authenticate via "local" username/password combinations and ALSO any number of OAuth services - what might that user data model look like? Usually, if ...
5
votes
1answer
748 views

How to keep the client credentials confidential, while using OAuth2's Resource Owner Password Credentials grant type

We are building a rest service and we want to use OAauth 2 for authorization. The current draft (v2-16 from May 19th) describes four grant types. They are mechanisms or flows for obtaining ...
4
votes
2answers
608 views

How to extend access token validity since offline_access deprecation

Since offline_access is deprecated we have problem geting the so called long lived access tokens without that permission. Here (https://developers.facebook.com/docs/offline-access-deprecation/) it ...
4
votes
1answer
107 views

Does anyone know of any good complete resources to achieve google authentication using python?

Here is what I'm trying to do: I want to be able to finish the "OAuth token dance" and gain an access token so I can then use that to connect to googles IMAP api for a user. Here are my problems: I ...
4
votes
1answer
532 views

Facebook cookie and oauth 2.0 changes

This function used to work for me until the other day when facebook decided to enforce some changes. function get_facebook_cookie() { $app_id = '[MyAppID]'; ...
4
votes
1answer
105 views

All-in-one solution for using OAuth2 with Compojure

I am trying to integrate a compojure application with those OAuth2 providers: LinkedIn, Facebook, Google, and Twitter, using an all in one solution. I am aware of some existing java libraries such as ...
4
votes
1answer
97 views

Is there an authorization server that I can use to test a client implementation of OAuth 2.0?

Related: Is there an OAuth test server Is there a service or website that I can use to test a client implementation of the OAuth 2.0 protocol? The question linked above points to some excellent ...
4
votes
1answer
122 views

Proper method for accessing OAuth2 tokens via javascript

I understand the basics of oauth, and I've used it in application before, but never like this. I've got an oauth2 based api I wrote, and I'm writing a javascript application (in backbone.js), and I ...
4
votes
3answers
1k views

Facebook canvas app “redirect_uri” breaks out of iframe after authorization & authentication

I'm upgrading my existing FB apps, and going absolutely bonkers trying to get a simple PHP iframe canvas app to authorize and authenticate (as well as use SSL). Never looked through so many ...
4
votes
6answers
2k views

FB.Auth.setAuthResponse only compatible with OAuth2 issue

Loading my facebook page in a tab shows following error: FB.Auth.setAuthResponse only compatible with OAuth2. I use oauth parameter like this: FB.init({ appId: fbAppId, status: true, ...
4
votes
3answers
4k views

API Error Code: 191

yep, getting the 191 error. I've researched and found this question to be helpful: facebook api error 191 My URL looks like: ...
4
votes
3answers
2k views

FB.getLoginStatus doesn't fire if the user is not logged in to Facebook

I am working on a Facebook application which is integrated with Facebook and am trying to get the user's FB session. As far as I understand, a common usage scenario is as follows. call FB.init() ...
4
votes
2answers
406 views

Whether there is any Php client for Oauth2?

Is there an OAuth consumer library for PHP, that ideally can be used for Google's API?
4
votes
2answers
307 views

OAuth v2 communication between authentication and resource server

I'm having some troubles understanding how OAUTH-v2 works. The OAuth version 2 spec reads: Accessing Protected Resources The client accesses protected resources by presenting the access ...
4
votes
2answers
986 views

Get Google API Token

I need to get the google valid token to use Google APIs, but my code does not work. could you please advice me? $client_id = '495225261106.apps.googleusercontent.com'; $client_secret = ...
3
votes
1answer
19 views

Manage Facebook authentication tokens

We are currently introducing facebook and twitter login functionality for our users both on our website as well as mobile app. The current issue I have is with facebook tokens, I have noticed that ...
3
votes
2answers
240 views

What is best for authz ASP.NET MVC REST API? OAuth 2.0 or OAuth 1.0?

We are building a REST API using ASP.NET MVC. This API is similar in principle and usage to the Factual v3 API. They use 2-legged Oauth 1 for their API. Our design is very similar in that ...
3
votes
2answers
92 views

How to build a Python crawler for websites using oauth2

I'm new in web programming. I want to build a crawler for crawling the social graph in Foursquare by Python. I've got a "manually" controlled crawler by using the apiv2 library. The main method is ...
3
votes
2answers
122 views

how to generate OAuth client identifier and client secret?

I'm implementing an OAuth2 provider, and I would like to have an area somewhere in my web site where developers log on and register third party apps. But I'm having doubts on how to generate the ...
3
votes
2answers
231 views

No route matches [GET] “/auth/google_apps” when I try to authenticate with omniauth-google-oauth2 gem

I have implemented twitter and facebook authentication with omniauth gem, but when i try to authenticate with openID or google I get: No route matches [GET] "/auth/google_apps" or No route matches ...
3
votes
1answer
141 views

How to authorize mobile apps with a third party by oauth BUT connect to my service, not the 3rd party

My app is architected as follows: I have a web service (running on GAE, not very relevant to this question) and the data that this service contains is made available through a website and through ...
3
votes
2answers
802 views

Google plus api for posting on wall like facebook

I have been searching for tutorials on google for posting some text on google plus. But it seems like there are none. I have also tried to go through the docs provided by google for developers of mac ...
3
votes
2answers
648 views

Uncaught error…FB.Auth.setAuthResponse only compatible with OAuth2

In using the new Javascrip SDK for facebook I get the following error when trying to (function() { var e = document.createElement('script'); e.async = true; e.src = document.location.protocol + ...

1 2 3 4 5 11