Questions tagged [oauth-provider]
118 questions
5
votes
2 answers
What exactly is an "OAuth Provider"?
I want to understand what is usually meant by the term "OAuth Provider". There seems no mention of it in the OAuth specification.
If we consider a OAuth Provider as a component of an application, what functions does it perform (e.g. authorization,…

Eugene Yarmash
- 142,882
- 41
- 325
- 378
4
votes
3 answers
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 !

Yugal Jindle
- 44,057
- 43
- 129
- 197
4
votes
1 answer
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 my client doesn't have to accept permission…

Michael Bavin
- 3,944
- 6
- 31
- 35
4
votes
1 answer
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 on actually implementing the provider -- but all…

Félix Saparelli
- 8,424
- 6
- 52
- 67
4
votes
1 answer
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 grant_type parameter. My code from client callback…

Alexey Poimtsev
- 2,845
- 3
- 35
- 63
4
votes
2 answers
Grails Spring Securiy Oauth Provider plugin: Full authentication is required to access this resource
I am using grails "Spring Security OAuth Provider" plugin. And I am able to get access code on response of below URL. …

Neeraj Bhatt
- 145
- 2
- 13
4
votes
1 answer
Is there a play2 framework plugin to build OAuth REST API?
I would like to build a web service (RESTful JSON API) and I would like to secure my API with OAuth 1.0 or 2.0. I'm using Play2 with Scala and I cannot find examples on writing OAuth providers (not consumers) in Scala nor in Play2.
I believe the…

Ahmed Farghal
- 1,294
- 11
- 17
4
votes
1 answer
Doorkeeper access token
I'm trying to build up an OAuth2 provider with Doorkeeper and I wanted to test all existing flows, but got stuck at the first attempt.
I'm trying to test the authorization code flow. Everything works fine on getting the authorization code, but once…

Andrea Reginato
- 1,338
- 1
- 17
- 23
3
votes
0 answers
How can we use Apple Provider with Spring Security oauth2 client
I need to use Apple_Sign_In option with other Google, Facebook sign in options. Even though Apple is adopted the existing open standards OAuth 2.0 and OpenID Connect (Hybrid Flow). It's difficult to get it work by simply changing the .yml…

selan dimantha
- 51
- 1
- 4
3
votes
2 answers
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 it is only the consumer side. So I wonder if…

StasM
- 10,593
- 6
- 56
- 103
3
votes
0 answers
Implementing custom oauth-provider?
I want to implement Oauth-provider in such a way.
I have one project in which i am accessing the rest apis. Now i want to create my own oauth-provider for every api to hit.I google alot but count not found anything from which i can start my…

Ranveer Singh Rajpurohit
- 633
- 3
- 13
- 27
3
votes
0 answers
Oauth provider ask permission from *another* provider
I have implemented an application using django-allauth that logs in users using either a normal django user login or through a google or github social login. This seems to work fine until now - users can either log in to this application using their…

Serafeim
- 14,962
- 14
- 91
- 133
3
votes
1 answer
Error on Configuring Django-oauth-plus
I am getting a 400 error when i try the example in the docs
settings.py
INSTALLED_APPS = (
'oauth_provider',
'django.contrib.auth',
)
OAUTH_SIGNATURE_METHODS = ['hmac-sha1',]
And when i do this
>>> from oauth_provider.models import Resource,…
user1648844
3
votes
1 answer
Is there a secure way to implement a client side code snippet that my customers will embed
My company provide services to other websites. I would like to be able to give them a simple snippet of code to embed in their site (like a widget) that will send a query to the service I'm implementing, receive a response and render the results in…

davidrac
- 10,723
- 3
- 39
- 71
2
votes
0 answers
Google OAuthProvider for ServiceStack.net
I was trying to create a google oauthprovider with servicestack but I'm having a bit trouble.
(I'm following google's description here Using OAuth 2.0 for Web Server Applications
I'm getting (what seems to be a correct) code back from…

Larsi
- 4,654
- 7
- 46
- 75