Tagged Questions

2-Legged oauth is a mechanism for third party applications, mostly mobile and desktop clients, of getting user protected resource by getting access token in exchange of user and password.

learn more… | top users | synonyms

9
votes
2answers
2k views

Implementing a 2 Legged OAuth Provider

I'm trying to find my way around the OAuth spec, its requirements and any implementations I can find and, so far, it really seems like more trouble than its worth because I'm having trouble finding a ...
5
votes
1answer
577 views

Has anybody implemented 2 Legged OAuth using DNOA?

I am trying to create an Authentication Module in CSharp where I need to verify the Signature from the request using DotNetOpenAuth(DNOA) Library for 2 Legged OAuth which only has consumer Key and a ...
4
votes
1answer
299 views

How to use Google Analytics API with 2-legged OAuth (Google Apps for business)?

I want to develop an application for the business I work. We are using Google Apps and want to get data from Google Analytics and show it in one of our web apps. I do not want the client to see any ...
3
votes
2answers
1k views

2-legged OAuth with google-api-java-client

Does anyone know how to use 2-legged OAuth with google-api-java-client? I'm trying to access the Google Apps Provisioning API to get the list of users for a particular domain. The following does not ...
3
votes
1answer
171 views

2-legged OAuth in Coldfusion

I am developing a service to get data from Echo System using their Scheduling API. Echo System Scheduling API requires each request to be signed by OAuth(2-legged). I have generated the request URL ...
2
votes
0answers
477 views

2-Legged to Google via oAuth DevDefined (.net)

Has anyone been able to get oAuth working with the gMail feed using the DevDefined oAuth library? I'm having a really hard time figuring out how to get this working. Seems like I either get a 401, ...
1
vote
1answer
309 views

Google API 2 legged Oauth : “Token invalid - Invalid AuthSub token.”

I've based my code on http://gdatatips.blogspot.com/2008/11/2-legged-oauth-in-php.html. Here's my code, I want to work with the Google Doc (Document List) API : $endpoint = ...
1
vote
0answers
255 views

2-legged OAuth implementation in C#

I'm trying to implement a two-legged OAuth authentication, so I can get to create a User on a website. I managed to craft this ruby code that performs that task, but I need to convert it to C#. I'm ...
1
vote
0answers
81 views

Adding a secondary authentication under OAuth?

Greetings! Say I have fleet of mobile devices that are the consumers in a three-legged OAuth. The user authorizes each device, but then hands them over to other people. I would like to have these ...
1
vote
1answer
1k views

oAuth in PHP to make 2 legged request

I am currently stuck trying to make requests to a service's api using a 2 legged oAuth request using PHP. I am using the PHP library found here: http://code.google.com/p/oauth-php/ and there seems to ...
0
votes
1answer
25 views

Is there any need of OAuth(2-legged) on HTTPs

Is there any need of OAuth(2-legged) on HTTPs. In 3-legged scenario we use oauth for delegation purpose. but what is the purpose of Oauth(2-legged) over https. In my scenario I am consumer and also ...
0
votes
0answers
101 views

Parse Error while trying to read gmail inbox feed

I am using 2 legged OAuth to read Gmail Inbox feed client = gdata.apps.service.AppsService(domain="localhost")#, source = '') client.SetOAuthInputParameters(OAuthSignatureMethod.HMAC_SHA1, ...