OAuth (Open Authorization) is an open method for client applications to access protected resources on behalf of a user.

learn more… | top users | synonyms

83
votes
8answers
8k views

What's the difference between OpenID and OAuth?

I'm really trying to understand the difference between OpenID and OAuth? Maybe they're two totally separate things?
64
votes
3answers
27k views

PHP Tutorial for OpenId and OAuth

Is there a good tutorial for implementing OpenId and OAuth together in PHP? All of the OpenId tutorials I've seen on the official OpenId site haven't been as helpful or as simple as they could have ...
57
votes
10answers
45k views

Do Facebook Oauth 2.0 Access Tokens Expire?

I am playing around with the Oauth 2.0 authorization in Facebook and was wondering if the access tokens Facebook passes out ever expire. If so, is there a way to request a long-life access token?
51
votes
5answers
26k views

Security of REST authentication schemes

Background: I'm designing the authentication scheme for a REST web service. This doesn't "really" need to be secure (it's more of a personal project) but I want to make it as secure as possible as an ...
48
votes
2answers
4k views

How is oauth 2 different from oauth 1

In very simple terms, can someone tell what's the difference between oauth 2 and oauth 1. Is oauth 1 obsolete now and I should be implementing oauth 2? I don't see many implementations of oauth 2. ...
38
votes
5answers
5k views

OpenID vs. OAuth

What is really the difference between OpenID and oAuth? They look just the same to me. I should clarify, I'm planning to use them in drupal, if that makes any difference. So I guess I'm bound by ...
32
votes
3answers
10k views

SSO with CAS or OAuth?

I wonder if I should use the CAS protocol or OAuth + some authentication provider for single sign-on. Example Scenario: A User tries to access a protected resource, but is not authenticated. The ...
28
votes
9answers
38k views

Facebook Oauth Logout

I have an application that integrates with Facebook using Oauth 2. I can authorize with FB and query their REST and Graph APIs perfectly well, but when I authorize an active browser session is ...
27
votes
1answer
1k views

registration-url parameter fails for fb:login-button if oauth 2.0 is enabled

I'm trying to get the registration flow for Facebook login working. Here's a bare-bones example: <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml"> ...
24
votes
8answers
4k views

OAuth secrets in mobile apps

When using the OAuth protocol, you need a secret string obtained from the service you want to delegate to. If you are doing this in a web app, you can simply store the secret in your data base or on ...
23
votes
2answers
3k views

Any good tutorials on using OAuth with Piston?

I've looked at the relevant section of the Piston documentation, but it only seems to focus on how to turn it on, not what it would look like for clients or how to test it to verify it's working. The ...
21
votes
5answers
13k views

application that uses OAuth and javascript

I am planning to create an app that uses JavaScript and it needs to use OAuth to authenticate user for a website. Can anyone help me out please? Any sample code? I know about the Google Code ...
20
votes
5answers
12k views

Twitter oAuth callbackUrl - localhost development

Is anyone else having a difficult time getting Twitters oAuth's callback URL to hit their localhost development environment. Apparently it has been disabled recently. ...
19
votes
2answers
4k views

Is there a way to get an user's email ID after verifying her Twitter identity using OAuth?

I am new to OAuth and have been playing around with the Twitter API. I am able to fetch the credentials of an user after authentication by making a request to ...
18
votes
2answers
2k views

Securing my REST API with OAuth while still allowing authentication via third party OAuth providers (using DotNetOpenAuth)

I have a product with a straightforward REST API so that users of the product can directly integrate with the product's features without using my web user interface. Recently I have been getting ...
17
votes
1answer
2k views

Best practices around generating OAuth tokens?

I realize that the OAuth spec doesn't specify anything about the origin of the ConsumerKey, ConsumerSecret, AccessToken, RequestToken, TokenSecret, or Verifier code, but I'm curious if there are any ...
17
votes
9answers
5k views

OAuth? ,OpenID? Neither? Which one should my site support?

I working on a new website and wanted some advice/feedback on OAuth vs OpenID vs Standard site owned username/password.
16
votes
1answer
462 views

Zend_Gdata and OAuth

I successfully retrieved token key / secret after applying Google Hybrid Protocol (OpenID + OAuth). Then I'm looking into Zend documentation here: http://framework.zend.com/manual/en/zend.gdata.html ...
16
votes
2answers
5k views

oAuth ASP.NET Membership Provider

Are there any recommended resources for implementing a custom membership provider that uses oAuth? The goal would be to have users to log into my ASP.NET MVC application using their existing oAuth ...
16
votes
1answer
3k views

Implicit user creation with Authlogic and Authlogic OAuth plugin

I'm trying to write a simple OAuth consumer app in Rails. I'm using Authlogic for handling authentication and the Authlogic OAuth plugin to do the oauth thing. The oauth plugin provides a couple of ...
16
votes
3answers
6k views

2 legged oauth - looking for information

I want to implement a new REST-based api on our infrastructure, and oauth seems to be the way to go. For our implementation there will first just be server-to-server access, which will be completely ...
15
votes
3answers
4k views

Which OAuth library do you find works best for Objective-C/iPhone?

I have been looking to switch to OAuth for my Twitter integration code and now that there is a deadline in less than 7 weeks (see countdown link) it is even more important to make the jump to OAuth. ...
15
votes
5answers
5k views

Oauth for Google API example using Python / Django

I am trying to get Oauth working with the Google API using Python. I have tried different oauth libraries such as oauth, oauth2 and djanog-oauth but I cannot get it to work (including the provided ...
14
votes
3answers
460 views

Integrating openID and oauth as website login, signin and authentication system

First of all let me start by saying that this question is not about different openID and oAuth implementations. There are many classes about these. My question is what to do after authenticating a ...
14
votes
3answers
547 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 ...
14
votes
5answers
2k views

How do I develop against OAuth locally?

I'm building a Python application that needs to communicate with an OAuth service provider. The SP requires me to specify a callback URL. Specifying localhost obviously won't work. I'm unable to ...
13
votes
6answers
9k views

How to decode OAuth 2.0 for Canvas signed_request in C#?

I'm able to successfully validate the signed request for a Facebook canvas app using the example here, but I'm unable to decode the payload. The Facebook documentation states that the 2nd parameter ...
13
votes
3answers
623 views

OAuth access for R

I'm trying to use R to grab some web data that requires OAuth authentication. Searching on CRAN and RSeek.org for info on OAuth + R provides nothing. Any tips for accessing RESTful APIs with R using ...
13
votes
6answers
14k views

Library for OAuth Provider (Java)

I'm looking for a Java library that helps me building an OAuth Provider. I must be able to receive OAuth signed requests and determine whether they are valid or not (checking the signature, timestamp ...
13
votes
4answers
779 views

Login system just like stackoverflow's, written in php

The question Is there a simple way to implement the login system that stackoverflow uses using php? For a long time I have developed websites, and have used a typical web form username/password with ...
12
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 ...
12
votes
8answers
11k views

Keep getting OAuth::Unauthorized error when using oauth and twitter ruby gems

I am using the ruby twitter gem and oauth to gain access to users twitter accounts. In my code, I have: unless @user.twitter_authd? oauth = Twitter::OAuth.new('token', 'secret') ...
11
votes
5answers
4k 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 ?
11
votes
3answers
2k views

What is the best OAuth2 C# library?

It seems like many app providers are using OAuth2 to allow API access, such as Twitter and Facebook. Does anyone use a good library to do OAuth2 processing that is general enough to use across all ...
11
votes
5answers
2k views

Securly Storing OpenID identifiers and OAuth tokens

I am creating a web app that will use OpenID logins and OAuth tokens with Youtube. I am currently storing the OpenID identity and OAuth token/token secret in plain text in the database. Is it ...
11
votes
2answers
3k views

OAuth's tokens and sessions in REST

The other minute I read an article on OAuth. It described especially the tokens being exchanged between client and service provider during a series of requests. The article also mentioned that OAuth ...
10
votes
5answers
205 views

How do I protect OAuth keys from a user decompileing my project?

I am writing my first application to use OAuth. This is for a desktop application, not a website or a mobile device where it would be more difficult to access the binary, so I am concerned on how to ...
10
votes
1answer
404 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
2answers
621 views

Secure OAuth in Javascript

I have an api which uses OAuth 1.0a to authenticate applications using it. It's replacing an old api which used a number of custom built and hodge-podge calls which are being deprecated. It's well ...
10
votes
4answers
5k views

Facebook OAuth login for iframe canvas apps displays a logo image and a Go to Facebook.com caption instead of logging in

I'm trying to set up my (iframe) Facebook application to use OAuth for authentication. I used the python-sdk from Facebook, but I'm not really satisfied by the result, yet. The problem is that when I ...
10
votes
2answers
765 views

How do I use connect to Gmail's IMAP server using oauth in Rails3?

I found the gmail_xoauth gem, which does most of what I need, but I also need to generate the oauth tokens (consumer_key and consumer_secret) from inside Rails3. I am trying to integrate Gmail's ...
10
votes
3answers
4k views

DotNetOpenAuth oAuth in ASP.NET MVC

I'm trying to understand how to apply the oAuth consumer library from DotNetOpenAuth in the context of ASP.NET MVC. oAuth is new to me, and the library doesn't seem very simple. Does anyone have a ...
10
votes
3answers
8k views

IPhone OAuth Tutorial?

Is there any tutorial out there showing how to use OAuth on IPhone? Basically all of the tutorials are for twitter, i need something which work for any website, which has OAuth and give general view ...
10
votes
2answers
4k views

SAML vs federated login with OAuth

What's the difference between SAML and federated login with OAuth? Which solution makes more sense, if a company wants to use a third-party webapp, and but also wants single sign-on and be the ...
10
votes
9answers
19k views

Facebook access_token invalid?

I'm attempting to use the new Graph API Facebook recently released, but I can't seem to get it to work correctly. I've gone through the steps, and after the /authorize call, I receive an ...
10
votes
2answers
7k views

Twitter API - Logout

I'm using OAuth in my web app, and users can login with twitter. I want to add "switch twitter account" button, which actually clears the session and then opens the authorize_url. As clearing the ...
10
votes
3answers
9k views

HttpURLConnection.getResponseCode() returns -1 on second invocation

I seem to be running into a peculiar problem on Android 1.5 when a library I'm using (signpost 1.1-SNAPSHOT), makes two consecutive connections to a remote server. The second connection always fails ...
10
votes
4answers
3k views

How Does Twitter's OAuth System Work?

I have got a demo script that lets me authorize with my app and sends back my token. But this is confusing. I have always used username and password in my CURL or simpleXML functions to authorize the ...
10
votes
2answers
2k views

How to get Uri.EscapeDataString to comply with RFC 3986

The Uri class defaults to RFC 2396. For OpenID and OAuth, I need Uri escaping consistent with RFC 3986. From the System.Uri class documentation: By default, any reserved characters in the URI ...
9
votes
1answer
2k views

Trying to protect resources with OAuth in Spring MVC

We already have REST web services written in Java on Spring MVC and I have been trying to protect them. The OAuth server is implemented in another website which handles the logging in and creation of ...

1 2 3 4 5 59