The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
63 views

Restricted access resource-owner and OAuth Provider Authorization logic

I'm spec'ing out an application that will be an OAuth provider. Users of the application may have restricted access to certain resources (such as that they are able to write, read, and modify resource ...
0
votes
0answers
88 views

Workflow required for OAUTH'ing using Windows Forms

Can someone describe to me what the best practice workflow should be to authenticate a user using OAUTH from a Windows Form application? Specifically I'm trying to save a file to a Google Drive. To ...
1
vote
0answers
204 views

Invalid signature for signature method HMAC-SHA1

I am using oauth 1.0 provider implementation to protect my api as security mechanism. I am using Oauth Test Client to request token, authorize and get access token and it is working quite fine. But I ...
0
votes
0answers
56 views

Setting up an OAuth provider in PHP

I am looking to set up a PHP OAuth provider and an API that will require tokens, however I am having a hard time finding any good documentation for someone who is only familiar with OAuth at the ...
1
vote
2answers
256 views

jersey.oauth.signature.UnsupportedSignatureMethodException: HMAC-SHA1

I'm working on an OAuth server implementation based on the jersey-oauth 1.16 contrib in GlassFish 3.1.2 container and I'm getting this exception when trying to connect to it via Scribe client API: ...
0
votes
1answer
122 views

How to implement OAuth for my website one and use it for website two

I want to implement OAuth/OpenID for Website One and use it in Website Two. I create Sign Up, Sign In, Sign Out, Profile functionality/Pages for Website One and want to use authentication in Website ...
0
votes
0answers
103 views

MVC OAuth provider API design

I got a website A where my users can sign in and edit their profile. I got two websites B1 and B2 to make it simple which are two different interfaces displaying a list of items. I would like to add ...
0
votes
1answer
77 views

Custom login module or OAuto provider

I'm writing an application, and I've only had experience using a custom login module with Glassfish fo handling user login. If deploying in the Cloudbees cloud, I'm assuming that providing a custom ...
0
votes
1answer
119 views

Oauth Multi tenancy: Should access token be generated per user or tenant?

We have a platform that is running on a Multi-Tenant scheme. So we have Tenant as parent and Users as children in the scenario. We are developing a Rest API on that platform (we have SOAP services ...
1
vote
1answer
100 views

Oauth provider behind reverse proxy

I try to use OAuth Provider in PHP (PECL Package) behind a apache reverse-proxy the client uses POST https://api.com/resource/oauth/request-token but my oauth provider receives POST ...
0
votes
1answer
83 views

Is oauth2 insecure?

I am implementing an oauth2 solution for an API i've created and i'm struggling with the potential insecurites (or my understanding at least). Is it correct that only a single token is generated and ...
3
votes
1answer
515 views

Using asp.net 4.5 OAuth to register google with clientid and secret

I notice in the asp.net 4.5 template, all the authorization samples besides google pass in secret and clientid. How can I pass in my google secret and clientid? Brock has a good discussion here that ...
2
votes
1answer
277 views

Zend Framework OAuth $_GET parameters

Goal: Creating an Oauth Provider for use within a Zend Framework web application. Process so far: Integrated the Zend Framework OAuth Client (ZF 1.12) with the Google Code OAuth classes ...
0
votes
1answer
190 views

invalid_credentials with omniauth on heroku

I implemented a project configured with OmniAuth/Twitter and OmniAuth/Facebook. in development mode with any problem. But when i tried on heroku. it refused to work. use Rack::Session::Cookie ...
1
vote
1answer
572 views

No adapter for handler error for oauth2 provider endpoints

I would like to implement OAuth 2.0 for my Spring 3.1 and RESTEasy project. The project is a JSON based REST service. I use Spring Security 3.1 and spring-security-oauth2 version 1.0.0.RC2 (which ...
0
votes
0answers
44 views

ASP.Net Web Api - OAuth 2.0 Service Provider [duplicate]

Possible Duplicate: OAuth 2.0 Service Provider .NET libraries There's any component/library to make my ASP.Net Web Api an "OAuth 2.0 Service Providers", like Google or Facebook?
0
votes
2answers
63 views

What are some services that provide user authentication for your website? [closed]

I am developing a small website and I don't want to implement a full authentication workflow given the scope of the project and I can't rely that all users have Facebook account (so I need fallback ...
3
votes
2answers
2k views

Can ASP.Net MVC 4's OAuthWebSecurity open a pop-up

I'm trying to figure out how to use ASP.Net MVC 4's new OAuthWebSecurity functionality. Is it possible when clicking on the facebook or twitter external login button to have the form post to a pop-up ...
2
votes
0answers
101 views

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 ...
0
votes
2answers
383 views

implementing authentication using oauth 2.0 and wicket

I try to bring up secure communication with our customer using oauth 2.0. first of all I have to confess that I am totally new to oauth. Used technologies are as follow: wicket, spring, I took the ...
2
votes
2answers
337 views

Spring OAuth (OAuth2): How can I get the client credentials in a Spring MVC controller?

In this snippet: @RequestMapping(method = GET) public List<Place> read(Principal principal) { principal.getName(); } principal.getName() gives me the user identification but I need a way ...
0
votes
1answer
56 views

oauth working with java but not in android

I have a Java program communicating with a server for authentication and displaying the correct response: public class Example { private static final String PROTECTED_RESOURCE_URL = ...
0
votes
1answer
199 views

Google GData Java 2-legged OAuth signature verification fails

My Consumer Code is as follows, GoogleOAuthParameters oauthParameters = new GoogleOAuthParameters(); oauthParameters.setOAuthConsumerKey(CONSUMER_KEY); ...
0
votes
1answer
155 views

oauth 2.0 showing authorization page again

I am new to oauth 2.0 and reading up on it. I tried using oauth 2.0 for my app with 37signals site and ran into a problem. Now sure if its as designed. Any here is what I see. User is already ...
1
vote
0answers
165 views

pyramid custom oauth2 decorator

Currently using Kevin Van Wilder oauth2 server project http://code.google.com/p/pyramid-oauth2/, its in development, but great part of the funtionality working well in my project but i had this ...
3
votes
1answer
820 views

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 ...
1
vote
1answer
176 views

PHP OAuthProvider rejecting signature method on staging server

I've made an OAuth Provider using the PHP Extension. This works fine in my development environment but after moving it to our Staging server I keep receiving the error message: ...
0
votes
1answer
220 views

pyramid_oauth2 service provider documentation or examples

I need to make an api in pyramid and i think oauth2 would be good to implement not to reinvent the wheel, already installed pyramid_oauth2 package but not sure about documentation or examples. ...
0
votes
0answers
138 views

With the fiasco of OAuth 2.0 what is a new provider to do?

Ironically, right around the time I'm working on an Authentication Provider, articles like this start popping up. So now I'm wondering - what is a new provider to do? The Auth provider I'm working on ...
0
votes
2answers
1k views

PHP oAuth2 Provider

I am trying to find a tutorial on how to build an oAuth2 Provider with PHP. I googled about it and no results came up. Exists out there any guides on how to do this? Or something like a library that ...
1
vote
1answer
51 views

expirers_in and multiple scope types

OAuth 2.0 v30 defines expires_in to specify Client time before token will expire. This works well when you have single duration for all scopes asked in request by Client. When there're more then one ...
1
vote
1answer
803 views

Doorkeeper access token

I'm trying to buil up an OAuth2 provider with Doorkeeper and I wanted to test all existing flows, but I got stucked at the first attempts. I'm trying to test the authorization code flow. Everything ...
2
votes
1answer
3k views

Create an OAuth 2.0 service provider using DotNetOpenAuth

I'm building a web app which will have an api and an authorization service using DotNetOpenAuth. I found this example on how you can authorize using a service provider that already exists but I would ...
2
votes
1answer
255 views

Any pointers on implementing oAuth Server on DNN?

I need to build an ecosystem of online tools (these tools are on various platforms like Moodle, Website Baker, ASP.Net, php, etc, some already built, some purchased from other vendors and some to be ...
1
vote
0answers
219 views

Request Token is not retrived while authentication using Signpost for OAuth

public class Tumblr { public static void main(String args[]) throws OAuthCommunicationException, OAuthMessageSignerException, OAuthExpectationFailedException, OAuthNotAuthorizedException ...
3
votes
2answers
1k views

Grails: Securing REST API with OAuth2.0

I am building a REST API using Grails. I want it to be protected using OAuth2.0 client_credentials flow(grant_type). My use-case is as follows: a external agent will send a request to something like ...
0
votes
2answers
237 views

OAuth2 and Drafts

I'm going to implement on my site a OAuth Provider, but I'm little confused: There are many drafts, of the client and of the server version. I have to use the same version right? In many ...
1
vote
2answers
552 views

OAuth2.0 Server stack how to use state to prevent CSRF? for draft2.0 v20

I am using PHP library for OAuth2.0 v20 In draft20, there is a mention of the use of state to prevent CSRF So far, my own web app that implements this PHP library allows the following: 3 legged ...
0
votes
1answer
129 views

Implementing OAuth support on a website

I want to extend my website to support OAuth so that third party applications can access data and perform actions on behalf of the website user. How should I go about it? Basically I would like to ...
3
votes
1answer
106 views

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 ...
1
vote
3answers
2k views

Accessing my own REST API with OAuth authorization

I'm pretty new to OAuth and API security. I'm building a REST API that will be accessed by my own mobile application. I want to expose API to other developers via OAuth authorization and ...
0
votes
1answer
346 views

Can I configure DotNetOpenAuth request token expiration?

In our API we implemented DotNetOpenAuth (v3.4.7). We frequently receive the exception "A token in the message was not recognized by the service provider", along with this stack trace: at ...
2
votes
1answer
408 views

Using a Facebook access token as the resource owner credentials in OAuth2.0

The OAuth 2.0 specification defines the Resource Owner Password Credentials Grant Type, which allows the resource owner password credentials (i.e. username and password) to be used directly as an ...
3
votes
2answers
780 views

Is it possible to secure WebSocket APIs with OAuth 2.0?

I am implementing an OAuth Provider to secure different web-based APIs. The most headache is giving me the securing of WebSockets through OAuth. Can it be done completely secure in a client that's ...
1
vote
2answers
1k views

Is there an OAuth 2.0 Provider implementation in Java? (not oauth client)

So basically I want to protect my APIs with OAuth 2.0 and implement an OAuth Provider to enable acquiry of accessTokens etc. Can it be done with JOAuth out of the box? Has anybody already ...
0
votes
2answers
308 views

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, ...
1
vote
0answers
262 views

oauth token for sinatra oauth2-provider

I am new to Sinatra and want to get it working with oauth2-provider gem. I followed instruction https://github.com/songkick/oauth2-provider#readme and looked at example. But after i've got ...
0
votes
0answers
192 views

pecl/oauth vs pecl/oauthprovider signature mismatch

I wrote a simple oauth provider and consumer using the pecl oauth package. Everything goes well until I attempt to get an access token, at which point I get a signature mismatch error. The oauth ...
1
vote
0answers
362 views

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 ...
0
votes
0answers
161 views

Whats the best approach to identify a user authenticated against some oauth service against my webservice?

First, I gotta explain the system I am trying to build: Users can authenticate against some providers thought OAuth (using Spring Social project) on the website OR my own mobile app. After users ...

1 2