OAuth (Open Authorization) is an open protocol to allow secure API authorization in a simple and standard method from desktop and web applications. OAuth 2.0 is the second version of the OAuth protocol.

learn more… | top users | synonyms

0
votes
0answers
2 views

IAuthProvider for OAuth2 in ServiceStack

Can anyone provide an example of how to implement IAuthProvider against an OAuth2 endpoint in ServiceStack? As far as I can see all the AuthProvider implementations I can find (like Facebook/Google) ...
0
votes
0answers
9 views

refresh token “error” : “invalid_client” on google app script new fitur upgrade auth

iam very hapy with new fitur authUpgrade but iam geting "error" : "invalid_client" when trying to refresh token and how to fix it, here is mycode: var oAuthConfig = ...
0
votes
0answers
8 views

PHP SMTP library with AUTH XOAUTH2 support?

Do you know of any PHP SMTP library that supports AUTH XOAUTH2 when logging in to a SMTP server? The only one I have found is Zend-email via this tutorial. All the libraries I have seen only support ...
0
votes
0answers
13 views

Your own OpenId and OAuth Provider

I want to implement a single-sign-on on all of my applications including mobile apps. Is it a good practice to create your own OpenId and OAuth Provider? Is there a good exmaple on how to do this ...
0
votes
0answers
11 views

iOS App using Google API / OAuth2 — Asking for permission again and again

Question in short: How can I prevent the Permission/Consent/Approval screen, following Google's Login-Dialog, from showing up every time? Similar questions can be found here, like this one Link, ...
0
votes
0answers
20 views

DotNetOpenAuth - Can't get the network credentials to work

So I've been working with DotNetOpenAuth for a while, Today I needed to add support for provider that forces me to send the secret key with Basic authentication (I've been using an old version and ...
1
vote
0answers
15 views

What's the right way to separate the Resource Server and the Authorization Server?

Using spring-security-oauth2 to secure my resources against a SSO endpoint that can act as an authorization server. I'm a bit confused when the documentation states: The provider role in OAuth 2.0 ...
1
vote
0answers
13 views

OAuth2 Spring client throws UserRedirectRequiredException

I'm trying to set up a Spring OAuth2 client that authenticates to my own provider and resourceserver. Provider and resource server are one application in my case. I have problems with setting up the ...
1
vote
1answer
21 views

Error connecting to Google Calendar

I'm trying to connect to Google Calendar using Oauth 2.0. Two days ago worked fine, however now throws an exception: "Caused by: java.lang.NoSuchMethodError: ...
0
votes
1answer
16 views

“Can't create reliable connection to server” error while signin using google plus

I am developing an application in which i want sign in using google plus. I have follow the steps from https://developers.google.com/+/mobile/android/sign-in But when i try to sign in to google ...
0
votes
0answers
11 views

Redirect URI error while integrating instagram in iPhone

I'm developing an app where I want to integrate Instagram. I'm able to login to I get Redirect URI error. I'm not able to find out wat exactly the error is. I'm getting {"code": 400, "error_type": ...
1
vote
1answer
41 views

OAuth2 library for Erlang

In my project I need a client OAuth2 library. The project is written in Erlang. What are the options for the language? PS I am a newbie in Erlang, so documentation/examples are a must.
0
votes
0answers
14 views

Obtaining Access and Refresh Tokens with j2me

I read this article and implemented it in j2me . I send an HTTP POST to the OAuth 2.0 device endpoint with your client_id and a special scope and The response is returned in a JSON object: { ...
-1
votes
0answers
12 views

How to use OAuth2.0 for Google Calender API in Android?

My android app is designed to fetch calendars and events from Google. I downloaded Google API v3 and followed the example from official tutorial. In the tutorial, it uses Account Manager to do ...
0
votes
1answer
20 views

Android oAuth Refresh Token returns null

I've been trying to figure this out for awhile now, cant seem to get with anything I've tried. I cant seem to retrieve the refresh token, it would come out as blank. public class oaUTH extends ...
0
votes
1answer
46 views

How to refresh Google Service account which expires after 1 hour?

I am using Google Drive API(C#) with service account as mentioned in https://developers.google.com/drive/delegation I am able to work with DriveService object, but after 1 hr, it errors out with ...
1
vote
1answer
24 views

How to design oauth 2.0 access token field in Sql?

I am designing the database for my own OAuth service. My current solution is to have an 512-bit long access token and save it as binary data in sql. Is this a good practice? Do I need varchar type ...
0
votes
1answer
34 views

Refresh token and Access token in facebook API

When we do oauth2 on google api, we get an access token and a refresh token. Suppose I'm writing a service and I want to periodically poll for changes I can just use refresh token to get fresh access ...
0
votes
0answers
16 views

Changing permissions to Google Drive with task queues and Oauth 2.0

We implement a functionality based in Task queues in Google App Engine Java (10 queues) adding and deleting permissions from Google Drive, but I have an strange problem, issue. After doing some ...
0
votes
0answers
26 views

web2py registration using facebook Oauth2

I have created a FaceBook / Oauth2 login class and it is able to login and access FB details. However after login I want logout button. But it shows login itself. Secondly it is not populating user ...
1
vote
1answer
18 views

Android installed app: Revoking OAuth2 access to Google Account

I've installed an Android application. The first time I ran it an OAuth2 window showed up asking me whether I wanted to grant the application access to some scope within my user account. However now ...
0
votes
1answer
24 views

Sign in and sign up functionality using oauth

Hello I want to perform functionality like sign in or sign up with facebook using oauth2. I have generated the consumer controller for oauth and could successfully consume the services provided by ...
0
votes
0answers
26 views

Google cloudprint with google-php-api-client Oauth2 and curl returns 403 error while trying to cronjob

I first used the following script to show all available printers (and I then obtained the refresh token from this script): <?php require_once 'XXX/Google_Client.php'; session_start(); $client ...
0
votes
0answers
19 views

Oauth2 in Restlet with a JAXRS Application?

I am trying to create a REST service (in JAX-RS) with Restlet which is protected by OAuth2. Our REST service has already been written with JAX-RS and after some investigation the Oauth2 implementation ...
0
votes
0answers
11 views

UserRecoverableAuthException: intent not firing up

I am trying to fire the window where the application asks the user to give consent for the application to access user data via GoogleAuthUtil.getToken(). However I cannot see the activity fired up ...
0
votes
0answers
35 views

Oauth2 Instagram API “redirect URI does not match registered redirect URI”

I am working on a Rails application which is in development mode and it can register with omniauth. The host is http://localhost:3000/ I'm using the gems: gem 'omniauth' gem ...
0
votes
1answer
37 views

Getting user profile image link and email with Google or Facebook external login

I've been trying to figure out how to get user profile image link and email while registering user with external login. Does extra data in following example serves a purpose of retriving extra data? ...
0
votes
0answers
16 views

Understanding base_url parameter when using HybridAuth

I'm trying to use the hybridauth library to authenticate and get access to the users profiles of my corporate OpenID provider. I'm trying to configure all the parameters but i don't understand some ...
0
votes
1answer
44 views

How should a client pass a facebook access token to the server?

On every call to my REST API, I require clients to pass user's facebook access token, which authenticates the user. What's best practice for passing this token? maybe as a parameter behind the HTTP ...
0
votes
1answer
25 views

Issue with Google Contacts API

I'm running an issue with gwt-oauth and Google contacts API. I use gwt-oauth to login and everything works fine. While running the RPC for retrieving the contacts I get WARNING: Authentication ...
2
votes
0answers
18 views

Tutorial for using requests_oauth2

I am trying to use the requests-oauth library for Python to make a request to Pocket. Unfortunately the description to use this library is not very comprehensive and I am also new to use oauth2. ...
0
votes
0answers
15 views

Bug in Google Oauth2

Could anyone please let me know why even after revoking google API access, still the aplication is working? Looks like there is bug in Oauth2. I checked this on a sample Google drive application and ...
0
votes
0answers
185 views

ImportError: No module named oauth even after installing oauth2

I am trying to access live twitter tweets. I installed oauth2 by running: python setup.py install The cmd showed this: Installed c:\python27\lib\site-packages\httplib2-0.8-py2.7.egg Finished ...
0
votes
1answer
38 views

How to import 3rd party module to python if its name is taken?

I want to use this class: google-mail-oauth2-tools but if i'll do something like import oauth2 the imported class would be python-oauth2 which is deprected and doesn't support oauth2 )even though the ...
0
votes
1answer
28 views

OAuth2 User Credentials Grant Security

I have a couple security questions on the OAuth 2.0 User Credential Grant type and possible security attacks. So from what I understand so far, when I exchange my users username password client ID and ...
2
votes
1answer
41 views

How do you write an OAuth2 server in Perl?

I'm trying to wrap my head around OAuth2 and Perl (i.e. Net::OAuth2) – specifically, setting up a RESTful API for a database, and an application that uses it. Perl Oauth2 package led me to ...
0
votes
1answer
37 views

How to use OpenID or OAuth for internal first-party authentication?

I am working on an internal authentication system for users of a set of of RESTful web applications. Our intention is that a user should be able to sign-on once via a web form and have appropriate ...
0
votes
1answer
13 views

Tasks.ASP.NET.SimpleOAuth2 fetch tasklists error

ASP.NET Tasks API – OAuth2 Sample Click the button below to authorize this application/list all TaskLists and Tasks. The request 'Google.Apis.Requests.Request(list @ ...
6
votes
2answers
103 views

Centralized API provider - oAuth or not?

I am a bit lost with the overflow of information and I need some guidance on the best way I can support providing APIs access only to trusted clients. Current environment: We currently have a ...
0
votes
0answers
26 views

SSO between a PhoneGap app authenticated via OAuth and Spring web site

I am building a PhoneGap app that has a subset of features of an existing Java/Spring web site. When the user tries to access the advanced features, I want to kick them to the web site in an in-app ...
0
votes
0answers
42 views

Python import oauth2 error

I have installed oauth2 by pip install oauth2 but when i import oauth2, it results: Traceback (most recent call last): File "<pyshell#23>", line 1, in <module> import oauth2 ...
0
votes
2answers
32 views

OAuth for server side apps

I need to interact with an API that only supports OAuth2. The problem is, I would like to write a purely server side application which should sit there without a GUI polling an API every day. The ...
0
votes
1answer
38 views

Youtube API v2 - Authentication differs between queries?

Using the Youtube API, I'm trying to write a script listing all of the uncaptioned videos a user owns, whether public, private, or unlisted. First, I authenticate using the user's credentials: ...
0
votes
1answer
43 views

Force expiring OpenStack Swift Tokens

Is there a way to force expire or revoke OpenStack Swift Tokens? I am looking some API method to do this. Bing / Google search didn't return anything useful.
0
votes
1answer
32 views

When implementing an oauth2 server, is there any reason to store access tokens?

If I'm writing a server to issue access tokens based on refresh tokens, is there any reason to store the resultant access tokens in the database? My initial assumption is not to because the access ...
0
votes
0answers
31 views

OAuth from Windows Phone/ WinRT/ Xbox to Web-API?

I've got a site built with MVC 4 that uses DotNetOpenAuth to allow users to login via various OAuth enabled providers, as well as using a local security database. Once authenticated, regardless of the ...
0
votes
0answers
13 views

Salesforce OAuth2.0 Web-Server flow not showing Approval Screen for second time onwards

I'm using OAuth2.0 Web-Server flow to connect with Salesforce. Everything is working fine except when I try to re-connect the client with Salesforce, the approval screen is not shown again. As per ...
0
votes
2answers
45 views

Google Play Services: TokenActivity appears empty when asking for auth

I'm working on an app that uses Google Drive as a backend. I've run through the DrEdit example and I'm having issues with the authorization. I get to the point where I get a ...
0
votes
1answer
25 views

What is the proper RESTful way to handle a variable response for an endpoint that is based on the type of user that accesses it?

I have resource endpoints that I would like to respond differently to the user that tries to access the endpoint. Scenario Let us say that I have a resource endpoint /users, and the following ...
0
votes
1answer
47 views

YouTube api v3 debug oauth2 access token

I get an oauth2 access token using the following scopes from the user. scope: ["https://www.googleapis.com/auth/youtube"] Then i proceed to use this token for calls to the youtube v3 api. These ...

1 2 3 4 5 47