1
vote
1answer
30 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
64 views

Facebook oAuth with Phonegap 2.3.0 not returning token as url param at success url

I am trying to integrate Facebook oAuth with my Phonegap 2.3.0 application so that I can post to the user's wall. I am able to use the library from here: Phonegap oauth with some modifications to ...
0
votes
1answer
56 views

Check Access Token every Request with Redis

I'm currently implementing an OAuth 2.0 Architecture for my RESTful API. With each request I set up an Authorization Bearer Token in the HTTP Header for all my clients to make Authorized Requests. ...
0
votes
1answer
69 views

Spring oauth2 validate token request

Does oauth2RestTemplate or access token providers support validate token request? Here is the flow: Mobile/Web-App authenticated from third party Authentication server and obtains Access-Token. ...
0
votes
1answer
33 views

Are OAuth2 bearer tokens signed?

It may be a stupid or naive question, but: Are OAuth2 bearer tokens signed? To put it in other words: Is the consumer able to verify whether the bearer token was issued by a specific authorization ...
0
votes
1answer
52 views

Google OAuth 2.0 inconsistent token type?

Google says in its own OAuth 2.0 specs in accordance with the OAuth 2.0 draft that the authorization header should be: Authorization: Bearer {access_token} And indeed it works with the G+ API. But ...
0
votes
0answers
39 views

Collecting client-specific data from OAuth2.0 Access token

Is there a way to collect useful, client-specifc information from API users without using an access_token with stored data about the client? My use case: I have implemented an OAuth2.0 Resource ...
0
votes
0answers
65 views

Error while authenticating google mail using oauth (vb.net)

i am using this to get my access token *note: it is https not ttps, cause i cant post more 2 links in a question. ...
2
votes
2answers
218 views

Cannot get oAuth2 Access Token for Google Analytics API

I am using Rails + Garb Gem (Sija Branch) + omniauth-google-oauth2 Gem and I can successfully authenticate with the Google Analytics API and extract data that our app is generating when using a user ...
1
vote
0answers
62 views

Using ExtraData to send params from the authorization server back to the client

I've been trying to use the ExtraData property on the EndUserAuthorizationSuccessBase class to send extra params back to the client. I first needed to send back the username but then I figured out I ...
0
votes
1answer
84 views

How to get Google OAuth2 Token with Webview

I am trying to implement OAuth2 within my android app using webviews. One issue I am having is after the user allows my app to access their account, I am redirected to the page that contains the ...
0
votes
0answers
63 views

GitHub Acces Token POST Error (Cookies required)

I got a PHP application, which I am trying to integrate with GitHub. After I get the code from the authentication and I try to exchange it with an access_token I am getting the following error ...
1
vote
0answers
41 views

oAuth 2 google login - access_token and refresh_token

As far as I understood access_token has a short life about 1 hour and then if the user wants to log on I should use refresh_token to take new access_token. What I observed in my tests is that even on ...
1
vote
0answers
91 views

access token for google cloud print service

I want to use google cloud print service for my application, Concept is : Buyer can purchase products from my site and he should send order list to supplier's printer. For this, Supplier should ...
2
votes
1answer
445 views

Getting (OAuthException - #2500) An active access token must be used to query information about the current user

I am getting the following error: (OAuthException - #2500) An active access token must be used to query information about the current user. Using V6 of the Facebook SDK in C#. Below is the code ...
0
votes
1answer
91 views

Can't get soundcloud access_token using php sdk. invalid_grant error

I am using soundcloud php sdk. It works successfully when i use the sdk to get track. But when i've tried to get an access Token in order to use it, the sdk send me back an error 401. After debugging ...
0
votes
2answers
567 views

OAuth: Send Access Token and Get User data

I am trying Google OAuth.I am developing web application running on IBM webSphere server. Application's framework is SpringMVC. I am trying to get userinfo.profile. I have successfully get Access ...
1
vote
1answer
135 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 ...
3
votes
2answers
264 views

How to convert Box's “code” to “token” after user allows access

I'm a very inexperience developer, trying to hook up Box API v2. I've successfully set up a PHP client library, which I found thanks to the link in the first paragraph on developers.box.com/auth. I've ...
0
votes
1answer
256 views

How to get a new access token after expiration using OAuth 2.0 along with Youtube API in iOS application

I am using the Youtube Api in my iPad application. i managed to get authenticated and get the access token using the OAuth 2.0. my problem is that the token expires after one hour and i don't know how ...
0
votes
1answer
309 views

Connection Refused using access token from OAuth 2.0 User-Agent Authentication from Salesforce

I'm using OAuth2.0 User-Agent Authentication flow to get the access & refresh tokens so that I can use the Foce.com REST API over remote access. Now, the problem is that I'm able to authorize ...
2
votes
0answers
54 views

Facebook Constantly Switches Between Two Access-Tokens

I'm facing a somewhat weird situation. In our application we removed the use of the offline_access-scope and implemented their new logic to get a new token. Therefore, we use the following ...
0
votes
1answer
483 views

How to check GoogleCredential if it is expired

I have initialized the GoogleCredential variable from saved-access-token and saved-refresh-token. But i don't know to check it expired or not ? I know that GoogleCredential has a function ...
2
votes
1answer
863 views

How to get access token from GoogleCredential?

I am trying to get an access token to use the Google Play Android Developer API, and I got this far using the Google API Java Client documentation example: HttpTransport HTTP_TRANSPORT = new ...
7
votes
1answer
1k views

Rails Google Client API - unable to exchange a refresh token for access token

After struggling with some SSL issues on my machine, I'm still trying to access a user's Blogger account through the Google Ruby Client API. I'm using the following: Rails 3.2.3 Ruby 1.9.3 oauth2 ...
3
votes
2answers
1k views

Google API Oauth php permanent access

I am using the google Caledar API. This is what I want, once you give the app the persmission, I can always use the app, without the need of giving access everyday. I keep hearing that I need to save ...
0
votes
1answer
270 views

Proper paradigm for refreshing OAuth2 access token

I'm working with an API that uses OAuth2, provides an access token that expires in 3600 seconds, and provides a refresh token with it. Originally, I'd waited for an API call to fail in a way that ...
1
vote
1answer
291 views

OAuth 2.0 - When should an access token be renewed with refresh token?

I'm currently using OAuth 2.0 to access the Google API. From my understanding, I should use the returned refresh token to renew the access token. Should this be refreshed before it expires or should ...
0
votes
1answer
481 views

How can I get a user access token for a specific facebook test user?

According to Facebook Devlopers: Test Users, I can list the test users of my facebook app by making a request to https://graph.facebook.com/APP_ID/accounts/test-users?access_token=APP_ACCESS_TOKEN. ...
0
votes
0answers
261 views

Display pictures using Instagram API with MVC3 Razor

I am currently spinning on new MVC3 project which requires Instagram API. What website has to do is that the website will pull any 8 pictures based on a tag and display in website. Any great ...
2
votes
3answers
879 views

Do OAuth2 access tokens for a mobile app have to expire?

The accepted answer here as to why OAuth2 access tokens expire: Many providers support bearer tokens which are very weak security-wise. By making them short-lived and requiring refresh, they limit ...
3
votes
1answer
2k views

Refresh Token for Google Api Php Client

I am using google api php client for accessing the google analytics data.. I want to get the analytics data in offline access, so I need refresh token.. Please help me to get the refresh token..
0
votes
2answers
133 views

Accessing a common Facebook account. Facebook authentication and access tokens

I'd want to allow all users of a mobile app to post to a same Facebook account, account whose credentials I don't want them to know... I'd simply want to make it transparent to users, I mean, I'd like ...
8
votes
1answer
691 views

IOException thrown by AccountManagerFuture.getResults whereas connection is alive

The following method systematically throws a IOException when invoked on my Android device whereas the internet connection is alive (I can retrieve emails or connect to gmail using my Android device). ...
0
votes
1answer
2k views

How to get a long life access token, server-side (PHP)? [duplicate]

Possible Duplicate: How to extend access token validity since offline_access deprecation I try to get a long life access token (60 day expiration time) for my application. But all my tests ...
0
votes
1answer
392 views

Can we get a facebook access token by providing email and password in the code?

I would like to get the photo urls from the from this album: https://graph.facebook.com/175758929145317/photos If you access it without providing an access token, then you will get empty data: { ...
0
votes
1answer
1k views

Facebook extended access token doesn't work - but everything seems to be fine (?)

I try to get 60 days facebook access token from server side request. After user is loged in I check access token through getAccessToken() function from Facebook SDK and after that I use ...
0
votes
0answers
288 views

retrieving access token from disqus after getting the authorization code

Good Day everyone, I am trying to set up disqus in a web application. I am successfully getting the authorize URL as per the disqus documentation and having the code return to my web app. The problem ...
2
votes
1answer
920 views

How to refresh access_token in OAuth 2.0 in salesforce

I am developing a salesforce app and using OAuth 2.0 to login. I have a refresh token; how do I get a new access_token by sending a request to salesforce via OAuth 2.0 containing the refresh token for ...
1
vote
4answers
2k views

Whats the expiry time of Facebook access token fetched for the first time

Few days back I was trying to refresh access token and observed for "Web" type of app the initial access token expiry time is around 2 hrs and for "native/desktop" type app its 25 hrs. But since today ...
7
votes
8answers
9k views

How to refresh token with Google API client?

I've been playing around with the Google Analytics API (V3) and have run into som errors. Firstly, everything is set up correct and worked with my testing account. But when I want to grab data from ...
0
votes
1answer
3k views

PHP. How to get the access token. Authenticating with OAuth 2.0 for Google API

I found this function that supposedly gets the accessToken, but I get nothing. I do have the $_REQUEST['code'], and the other information needed in this function. Any ideas what is wrong here? ...
0
votes
2answers
320 views

Is there any way to get permissions until revoked with phonegap-plugin-facebook-connect?

I'm using phonegap-plugin-facebook-connect and it is working well (I can login the user and query the API) but the session that I'm getting has expiration. I wonder if is there any way to get the ...
0
votes
2answers
2k views

How do I get Facebook's new OAuth 2.0 access_token with JavaScript in Google Chrome Extention?

I want to create simple Google Chrome extention which would display News from Facebook. News feed can be retrieved by calling this:https://graph.facebook.com/me/home?access_token=... But I need ...
2
votes
1answer
1k views

Accessing Google Reader subscriptions with OAuth2 access_token

Is that possible to access Google Reader subscriptions using OAuth2 access_token? I've created Google APIs project, setting up domain and created javascript code that receives OAuth2 token. It works ...
1
vote
1answer
368 views

MAC Access Token Authentication IETF draft for OAuth 2.0

Does anybody know what happened to the IETF draft regarding the standardization of the HTTP MAC access authentication scheme for OAuth 2.0 (draft-ietf-oauth-v2-http-mac-00)? This internet draft ...
0
votes
0answers
1k views

Trouble with PHP SDK 3 and access token

I've developed a set of pages to get permission and authenticate the user with the new PHP SDK, but even if I've read many posts and suggestions and solutions, I can't figure how to solve my trouble. ...
7
votes
1answer
1k views

Why should I transmit `client_secret` to obtain an `access_token`?

In order to obtain an access_token from Facebook, you have to transmit your app_id, the code you receive after the authorize request, and your app's secret_key. Why would I EVER transmit my secret ...
1
vote
4answers
12k views

PHP SDK: How do I capture the access token after user auths app?

This is for a canvas app on the Facebook Platform using the new(est) Facebook PHP SDK. We are using the PHP example from the Facebook tutorial ...
1
vote
2answers
179 views

Facebook token not having “|” as delimiter anymore? Cause of OAuth2?

I am developing an IM client for iPhone, which will have support for an FB account as well. I am using facebook-ios-sdk for getting auth token. But whatever token I fetch, it does not contain any "|" ...

1 2