The oauth-provider tag has no wiki summary.
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. ...
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
3answers
723 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 ...
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 ?
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 ...
8
votes
1answer
541 views
OAuth2 Access Token Response
Quick question regarding the OAuth2 Spec, in particular section 5.1.5.
Reading that spec, it appears that the response needs to be formatted as JSON regardless of the format requested. Is that the ...
7
votes
3answers
2k views
Set up a PHP OAuth Provider
Alright I am trying to set up an OAuth Provider in PHP, but I just cannot get the hang of it. I've been referenced to this page a number of times, but I cannot wrap my head around it. Could someone ...
6
votes
2answers
2k views
Zend Framework Oauth Provider
How can I add a Oauth provider to a web application using Zend Framework? Zend Framework has support for oauth consumers, but I don't see a provider support. What do you use to implement a Oauth ...
5
votes
1answer
321 views
Looking for advice to secure a private REST API written in python-flask
I am currently writing a rest API in python with the microframework Flask. It's a private API and it deals with user data. I plan to use this API to build a web and an Android app.
For now I use ...
5
votes
3answers
2k views
Rails two-legged OAuth provider?
I have a rails 2.3.5 application with an API I wish to protect.
There is no user - it is an app to app style webservice (more like an Amazon service than facebook), and so I would like to implement ...
4
votes
1answer
661 views
Store access token on my Grails OAuth provider using Spring Security 3
I've just implemented a oAuth provider for my Grails application, and can sucessfully authenticate my client application (using signpost). The next thing I want to do is persist the access token, so ...
3
votes
3answers
224 views
How to provide OAuth services from website.?
OAuth allows the you the User to grant access to his private resources on one site to another site. But how exactly does this happen. And if I want to provide OAuth features in my site, (both as ...
3
votes
2answers
798 views
what is the recommended database structure for OAuth Provider
I am implementing a OAuth Provider using DevDefined library. I wonder if there is any recommended database structure for storing consumer and token data on the server side. Any advice on this is ...
2
votes
3answers
217 views
Is it possible to test out Oauth Login Authentication (Facebook, Twitter, Google) without a domain and hosting?
Is there a way without actual domain name and a hosting ?
Can we use localhost in some way ?
I am using Python and Django !
2
votes
1answer
327 views
Web Server Flow in the Rack OAuth-2 Server
I'm trying to integrate the Rack OAuth-2 server into my sinatra application, to use it in a web-server flow implementation and I can't make it work :(. I the following code in the oauth controller
...
2
votes
5answers
325 views
OAuth - What exactly is a resource owner? When is it not an end-user?
The term "resource owner" is defined in the OAuth v2.0 Specification, as "An entity capable of granting access to a protected resource. When the resource owner is a person, it is referred to as an ...
2
votes
2answers
471 views
Pure PHP OAuth Provider
Is there some code out there (under BSD or similar license preferably) that implements provider support for OAuth without needing PECL OAuth extension? Zend Framework's Zend_Oauth is pretty good, but ...
2
votes
1answer
57 views
Via OAuth - should 3:rd party apps be able to retain multiple access tokens per resource owner?
In the API we're developing, the access tokens are unique. With that I mean that there can only be one access token per application and user.
The consequence of this is that if a user authenticates ...
2
votes
0answers
290 views
Rails oauth-plugin: multiple strategies causes duplicate nonce error
I have a controller action that may be hit by the client with a
oauth client token (no authenticated user), or may be hit by an authorized client with an access
token (for a specific user). I want ...
2
votes
1answer
227 views
How to process Oauth nonces on the server side?
I am writing the provider part of the OAuth protocol on the serverside and I'm cracking my ahead over how much of the nonces sent by OAuth consumers that I need to cache.
According to twitter's docs, ...
2
votes
1answer
1k views
ruby's oauth2 grant_type
i started using oauth2 gem by intridea (http://github.com/intridea/oauth2) and don't know how to fix this problem. I have developed both client and server and on request for access_token i see no ...
1
vote
1answer
342 views
C# Asp.net Linkedin authorization using Linkedintoolkit with DotNetOpenAuth
I am trying to authorize my ASP.net application to use the Linkdin APIs but can't seem to authenticate properly. I was hoping someone could take a look at my source code and see what I might be ...
1
vote
0answers
122 views
Using OAuth to authenticate a GoogleApps Calendar widget our web app (Using Google as a two legged OAuth client)
I am currently investigating the feasibility of integrating a Google Apps calender with my application. One of my use cases involves adding a custom widget to the calendar. The user will use this ...
1
vote
1answer
363 views
Rspec testing for oauth provider
I'm writing a API that's also an OAuth provider. Is there any recommended way to write your rspec tests?
After you enable oauth to protect all of your endpoints, how do you write rspec tests that ...
1
vote
1answer
110 views
oauth for mobile application
I have a server(web) application and have exposed RESTful webservices so that third party companies can develop thier mobile applications on top of it. I want to have oAuth for authentication.
I ...
1
vote
0answers
423 views
Invalid OAuth request
Hello and sorry for my English.
I am using oauth 0.4.4 and oauth-plugin 0.4.0.pre4 gems.
When i trying to access my app as an OAuth Provider
8 consumer = OAuth::Consumer.new consumer_key, ...
1
vote
0answers
280 views
Create “Provider” in Java with Oauth library?
I downloaded the examples (https://code.google.com/p/oauth/) compiled and loaded the provider and consumer WAR files to Apache Tomcat.
I configured provider.properties with:
Consumer_key=mysecret ...
1
vote
1answer
261 views
Use cases for OAuth - what are your ideas?
I want to put a question about what ideas do you have regarding Open Authentication (oauth) and what are your use cases of that simple and genius protocol.
One use case is the Facebook scenario, ...
1
vote
1answer
539 views
Tutorial or documentation about creating a OAuth provider in Ruby (not Rails)
I am building an Ruby application using Sinatra (over Rack/Thin) and I want to implement OAuth to allow access to resources on the server. I have found this gem, but I am now looking for documentation ...
1
vote
0answers
211 views
I need to perform an oauth authentication using Groovy on grails on various sites like Twitter, Digg, Flickr, etc. Can any help me out in this?
I need to perform this by pulling credentials from a database.
My Idea is to create a common method which receives secret key, consumer id, etc as parameter and perform an oauth authentication. I had ...
1
vote
1answer
114 views
oauth2 and trusted sites
is there any possibility to work with trusted sites (for example - sites of one developer) using oauth/oauth2 without confirmation of access to user data?
1
vote
2answers
393 views
openid along with oauth?
in my application, user sign in/sing out via openid ( same as stackoverlfow ).
i would like to open up my application a bit via oauth to third party applications.
how do i create my app which is ...
0
votes
2answers
252 views
working oauth2 provider server implemented on java
I am searching a working oauth2 provider server implemented on java,
leeloo and spring security are some that I have found,
but there is no working example.
...
0
votes
1answer
76 views
Java OAuth provider
I need some authentication logic on my server side for authenticating the users and also potentially 3rd party apps to access the APIs that I provide. I guess that will falls into OAuth category and I ...
0
votes
0answers
51 views
oauth-php keeps only a single access token
I am making an auth provider which allows a consumer to act on the behalf of multiple users at the same time (please dont go 'duh' yet).
In my oauth_consumer_registry table (where a consumer stores ...
0
votes
2answers
122 views
PHP OAuthProvider Returns HTTP 500
I'm working on adding OAuth to a RESTful API. Surprisingly, using PHP's OAuth and OAuthProvider classes (from pecl/oauth) I've not had any problems with signatures, etc.
Where I am encountering ...
0
votes
0answers
96 views
App engine returning 400 error for access token request
I was trying to implement oauth javascript client using Google app engine oauth end points.
I registered my myapp.appspot.com domain with my google account.
I was able to retrieve the verification.
...
0
votes
0answers
74 views
Difference between rfc3986#section-2.1 (percent encoding) and java.net.URLEncoder (application/x-www-form-urlencoded);
I'm trying to normalize an Oauth request into it's signature base string (which asks for percent encoding), and am wondering what the difference is between that and ...
0
votes
1answer
159 views
Problems decoding JSON data from Twitter API (THM oauth)
I am using tmhOAuth.php / class to login into twitter. I have been successful in logging in and sending a tweet.
When I go to use the friends.php script, I am having some problems inserting into my ...
0
votes
1answer
109 views
Rails3 OAuth Plugin
Hi I installed OAuth Plugin on my Rails 3 app to turn it into an OAuth Provider.
I followed the instruction from https://github.com/pelle/oauth-plugin under Rails 3.
But, under the instructions it ...
0
votes
3answers
435 views
Where is the libOAuth.a source?
Nowadays, I'm working on an iPhone project that is using social connections such as Twitter, Facebook..
When I tried to implement Twitter+OAuth solution into my project some another parts of project ...
0
votes
0answers
30 views
Jaiku OAuth 1.0 Integration
Scenario
I was trying to integrate my application with Jaiku.com. My app is based on .Net.
I followed their documentation as per http://www.jaiku.com/api/docs/authentication. Section 2.1 Getting A ...
0
votes
0answers
108 views
Steps to implement oauth [closed]
I have to implement oauth service provider in my application so that consumer of my services get data through oauth authentication. i download the DotNetOpenAuth. But I am not able to understand how ...
0
votes
2answers
2k views
Java OAuth Server
Are there any open source projects that enabled implementing OAuth Server? Apache Foundation ones?
0
votes
1answer
700 views
How to implement an Oauth provider in Java?
i'm having a lot of problems trying to implement an Oauth provider...
I already read a lot of other questions about on stackoverflow and all doesn't have an answer.
I would like to know if anyone ...
0
votes
1answer
487 views
oauth 2 provider - necessary to have both api key and app id for clients?
I am implementing an OAuth 2 provider and am wondering if it's necessary to generate both an API key and a client id for clients when they register an app with my provider.
From looking at OAuth 1.0a ...
0
votes
1answer
261 views
Exposing my API with OAuth and consuming it with an iPhone App
I've been playing with OAuth today and I implemented it on my API. So far I was consuming the services of my API with an iPhone app and I still want to do that but since I added OAuth it is getting ...
0
votes
1answer
154 views
Login with OAuth
I have a .net web application (asp and c#) with login functionality (myapp), I would like to implement in a second app called secondApp a "login with myapp" button using OAuth. Do you have a good ...
0
votes
1answer
335 views
PHP seg fault using PEAR OAuth provider class
I'm trying to create a oauth provider using PHP and it's official oauth class.
I'm just trying to make the provider handle the request but It gives me a two segfault actually.
Here is my provider
...
0
votes
1answer
162 views
What should I do to verify an OAuth signature in PHP with PECL OAuthProvider?
I'm trying to verify an OAuth signature in PHP with PECL OAuthProvider. But almost its functions is not documented.
ex) http://www.php.net/manual/en/oauthprovider.setparam.php
What should I do?
Is ...