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

1
vote
0answers
25 views

Authenticating to a Oauth 2-legged system

I'm trying to authenticate to a webservice using 2legged oauth. I have the next one working java example creating the authenticated URL using the signpost library: String consumerKey = "KEY"; ...
0
votes
1answer
59 views

2-legged OAuth 1.0a in Objective C - ios app development

I am developing an iphone application in Objective-C and quite new in it. I just have the request URL, consumer key and secret. How can I do 2 legged authentication, could you provide me some code ...
0
votes
1answer
67 views

Does Google support 2-Legged OAuth 2.0 for IMAP?

Does Google support 2-Legged OAuth 2.0 for IMAP? I know Google supports 3-legged OAuth 2.0 for IMAP, but I can't find any documentation for 2-Legged OAuth 2.0 for IMAP.
0
votes
0answers
43 views

Issue in Deleting Contacts using gdata contacts api

I am trying to write a script that uses 2-legged oauth to delete the contacts of a google apps account. I am able to read the contacts using the following code: URL feedUrl = new ...
1
vote
0answers
92 views

2 legged oauth for google calendar v3

I am working with Version 3 of Google Calendar REST API(using HttpClient) and its working fine. Similarly I've to work with web APIs of V3 Google Calendar since my application is in Google Apps ...
0
votes
0answers
98 views

2-legged OAuth to consume own REST API

Is it OK to use 2 legged OAuth to contact my REST service (SERVER) from an iPhone app (CLIENT)? In other words is it secure enough to have a consumer key and consumer secret stored in the iPhone app ...
1
vote
1answer
136 views

Oauth2 - long lived Tokens vs Reauthentication in a Client Credentials Flow

We've secured our REST server with OAuth2 and implemented the client credentials grant type for several client apps that we control. Now we're faced with the decision to either make the tokens long ...
0
votes
1answer
71 views

Signing base_string in OAuth

Hi i am trying to implement OAuth1.0 following this tutorial in this tutorial there is a heading OAuthGetRequestToken in which for getting request token we have to send a post request to URL ...
4
votes
1answer
2k views

How does 2-legged oauth work in OAuth 2.0?

In OAuth 1.0, 2-legged is pretty easily: Simply send the request as usual and omit the access_token header. Things seems to have changed in OAuth 2.0 (drastically, as I found out today :)). In OAuth ...
0
votes
1answer
112 views

oauth_signature in OAuth google api

Hi i am trying to implement OAuth1.0 following this tutorial in this tutorial there is a heading OAuthGetRequestToken in which for getting request token we have to send a post request to URL ...
-1
votes
1answer
99 views

OAuth:How to sort string by lexicographical byte value ordering in java

hi i am trying to get request token in from google apis.for getting request token i have to sort the parameter string by lexicographical byte value ordering in java code segment for the string ...
0
votes
1answer
50 views

Signature_invalidbase_string

Hi I am making a Google app in which I am sending request to Google API. I am trying to implement 2legged OAuth1.0 for getting request token(I am following this link) In this link I am sending aPOST ...
2
votes
1answer
143 views

Python GAE app using 2-legged OAuth and 3-legged OAuth at same time

I'm coding a Python - Google App Engine application. There are 2 important things this app must do: Write in user's calendar. Write in user's profile (working with users in a Google Apps domain) ...
1
vote
0answers
156 views

401 unauthorized error in oauth with Jira 2L0 in Rails using oauth-plugin

I'm trying to hook up an OAuth consumer using 2-legged authentication. I have two questions: 1) is it possible to use Oauth with a custom REST plugin (as opposed to the built-in API) 2) as a test of ...
1
vote
0answers
100 views

MasterCard API - error after adding certificate to request

MasterCard uses 2-legged OAuth. After preparation of OAuth payload, I add it to header in Authorization key. Then the request needs to be sent along with certificate. I am getting error at this step. ...
4
votes
2answers
648 views

Does google Drive api support 2 legged oauth?

Now, we have an application with Google Docs Api and 2 legged oauth. However,we want to migrate to Google Drive Api which uses Oauth 2.0. Can we use 2 legged oauth with Google Drive Api? Is there any ...
0
votes
1answer
193 views

Google GData Java 2-legged OAuth signature verification fails

My Consumer Code is as follows, GoogleOAuthParameters oauthParameters = new GoogleOAuthParameters(); oauthParameters.setOAuthConsumerKey(CONSUMER_KEY); ...
1
vote
0answers
108 views

How to integrate 3-legged OAuth system to and 2-legged OAuth system

I have a system provide main service using user account with 2-legged OAuth. I also have another system provide service with API to call but it authenticate using 3-legged OAuth. Currently, the 2 ...
0
votes
1answer
264 views

does two legged oauth2.0 have/support callbackAuthorize?

In the three legged flow you have a callbackAuthorize which would allow you to retrieve the code, which you can exchange for an access token. I'm wondering if two legged oauth has something similar ...
2
votes
0answers
257 views

OAuth 1.0a, 2-legged: how do you securely store clients' credentials (keys/secrets)?

Am I correct that OAuth 1.0a credentials need to be stored in plaintext (or in a way that can be retrieved as plaintext) on the server, at least when doing 2-legged authentication? Isn't this much ...
1
vote
1answer
349 views

Authenticating HMAC in MVC3

Im building my own web service on the premise of 2-legged OAuth. With each authenticated request there will be an included HMAC. I know it could be done like this: public ActionResult ...
0
votes
0answers
210 views

Google 2 legged Oauth “no target found”

I am having trouble using Oauth 2.0 with Google apps. I am trying access my google docs using the following code (I have replaced the consumer key, consumer secret, and requester id with asterisks): ...
5
votes
1answer
1k views

What really is 2-legged Oauth

I have been exploring OAuth version 1.0 for the REST API I am currently working on. I have 3 authentication scenarios this involves 3 parties, the service provider, the consumer and the user. The ...
7
votes
3answers
603 views

How Can I Tell Controller Specs to Use the Signed OAuth Request

I am building a 2-Legged OAuth provider for my api. Everything is hooked up properly and I can make signed calls from the rails console. The problem I have is that I am having trouble integrating ...
0
votes
1answer
312 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 ...
1
vote
1answer
720 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 = ...
4
votes
3answers
2k 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 ...
1
vote
0answers
1k 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 ...
2
votes
0answers
141 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 ...
4
votes
2answers
3k 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
285 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 ...
9
votes
1answer
1k 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 ...
3
votes
0answers
611 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, ...
13
votes
2answers
5k 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 ...
1
vote
1answer
2k 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 ...