Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
654 views

Facebook Page Access Tokens - Do these expire?

I'm building an app that allows users to administrate their Facebook Fan Pages. This requires the following two Access Tokens: A User Access Token A Page Access Token I'm quite familiar with User ...
7
votes
0answers
223 views

Performing Google Federated Login/oAuth2 after initial Authentication

I am trying to support "Hybrid" Federated Login and oAuth2 (using logic from this document) for a webservice which will: support Sign in using your Google account on my site. That is, from the ...
7
votes
2answers
839 views

Using Facebook Javascript SDK to get Graph Data

FIXED NOW! But I can't answer my own question yet. See my comment below. And thanks for helping. I've searched and searched and read the docs and still can't figure this out. I have a web page ...
6
votes
3answers
277 views

How to post to Facebook's Page from PHP

All I have: Facebook Application with AppID, AppSecret, ApiKey Facebook Page with PageID Own Facebook account I'm admin and creator of application and page above. So, I need to post to Facebook's ...
6
votes
4answers
221 views

What are the security risks in exposing facebook user access token in javascript?

Suppose that my application has an access token to some facebook user. Is there a security risk in exposing this access token in JS Code to some other users which visit my site? If so, what can they ...
6
votes
1answer
197 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 ...
6
votes
2answers
14k views

facebook Uncaught OAuthException: An active access token must be used to query information about the current user

I've been struggling to find out what is happening with this. My scripts were working fine for a bit and suddenly half stopped. I'm accessing the api and am getting back an access token. With the ...
5
votes
1answer
193 views

why isn't it possible to steal an access token?

I'm learning OAuth and I have a question in head I can't find an anwser.. I understood request token to authorize or not an application to use the API. But once the user got an access token, what ...
5
votes
2answers
260 views

Oath token_rejected on LinkedIn verification - Intermittent

I'm having problems with Oauth and LinkedIn. Most of the time the verification with Oauth will work fine, but sometimes (something like 1 out of 10 or 20) LinkedIn will return token_rejected. So far ...
4
votes
2answers
668 views

SINGLE SIGN ON SECURITY THREAT! FACEBOOK access_token broadcast in the open/clear

02/20/2011: It was confirmed by Facebook today that indeed there is one call in which the access_token is broadcast in the open . . . it just happens to be one call I use to make sure that the USER ...
4
votes
2answers
4k views

Android - OAuthException - I keep getting: “An active access token must be used to query information about the current user”

I've used this exact code and others that work to a certain degree, but I keep getting the following error: {"error":{"type":"OAuthException","message":"An active access token must be used to query ...
3
votes
1answer
117 views

fb_exchange_token for PHP only working once user removes app

For a Facebook app that I am building, I require longer time than the default 1 - 2 hours. I don't want to use "offline_access" as it puts people off from signing up to the app and is now ...
3
votes
2answers
220 views

Cannot Store Instagram API access_token with PHP

I'm working on building a small web app connecting into the instagram API. Currently using this library on GitHub which makes things a bit easier. I can connect and initially login fine, and the page ...
3
votes
1answer
297 views

Spring security restful web service token based authentication

I'm writing restful web service that is returning json and use Spring MVC for that. I'm using Spring 3.x. Now I want to add a login method, that will retrieve user name and password and return access ...
3
votes
2answers
255 views

Google OAuthGetRequestToken returns “signature_invalid”

Trying for hours to get a request token using Google OAuthGetRequestToken but it always returns "signature_invalid". For a test I use the oAuth Playground to successfully request the token. Here are ...
3
votes
3answers
154 views

How to get user access_token if I have his/her oauth_token?

The situation is: we have an APP + User + BD. When user opens my APP I get from FB signed_request and user_id+oauth_token. How can I then get access_token and check/get user permissions and other ...
3
votes
1answer
796 views

Facebook Graph API Explorer won't POST scores

According to Facebook documentation: "Create or update a score for a user You can post a score or a user by issuing an HTTP POST request to /USER_ID/scores with the app access_token as long as you ...
3
votes
2answers
363 views

Strange Access Token returned from Facebook

I have been working on Facebook app and I have been using Facebook Graph Toolkit for months and all the while, MY CODES are working (I can get Access Token, and I can use them to retrieve Facebook ...
3
votes
2answers
516 views

Can an access token returned by Facebook to the Javascript SDK work server-side with the PHP SDK?

I'm building a website that makes use of Facebook connect. I'm authenticating users client-side with the javascript SDK and calling an AJAX method on my server every time a user logs in to check if ...
3
votes
2answers
2k views

Storing a user's Facebook access token

I have a database that stores a user's access token (along with some other data). My list of permissions include offline_access when I authorize the user. So will the user's access token (client ...
3
votes
3answers
3k views

OAuth: Storing Access Token and Secret

We have a number of clients that use our API to power their websites. I have started a conversation at work about using OAuth to make authenticated API Calls. We will have both, two and three legged ...
3
votes
5answers
16k views

Facebook access_token: how do I get it once the user accepted my app?

When a user visits my site which contains a facebook app the first time, it requires him to allow it and he gets promted to do that, then I get the code which I can convert to an access_token. So far ...
2
votes
2answers
31 views

Is there an API equivalent of the Facebook Access Token linter/debugger?

Is there a graph API equivalent of the Facebook Access Token linter/debugger that I can call programmatically? The linter is nice. It tells you all sorts of cool information about the token you ...
2
votes
1answer
116 views

Do Google refresh token expire?

I have used the refresh token several times in just a short period for testing purposes, but I wonder that, do Google refresh token expire? Or I can call the same refresh token to get another access ...
2
votes
1answer
188 views

Access token immediately invalidated

for a few users (maybe not that few, considering the number of related mails I'm receiving) the access token associated with an OAUTH authorization seems to be immediately invalidated. The user is ...
2
votes
1answer
246 views

FB error:Expected 1 '.' in the input between the postcard and the payload

I have finished my app and then tried it on 3 FB accounts and it was ok, but the 4th have a permanent error (it cannot get an access token): com.restfb.exception.FacebookOAuthException: Received ...
2
votes
1answer
225 views

gdata-java-client + oauth2 + access_token secret

I'm currently trying to use the new java client(s) and due to legacy reasons for current state of google libraries, I need to use both the gdata and the new google java client api. Obviously I'd ...
2
votes
1answer
476 views

How to get an ACCESS_TOKEN from the new Add to Timeline Auth dialog

I currently have the following situation. On my website, the user can access his settings page. This page features a tab called 'Facebook'. On this page, I have the following code that lets the user ...
2
votes
8answers
536 views

Extend auth token without refreshing the page

Users want to use my facebook app for many hours without refreshing the browser. But token expires in 2 hours. Now I ask users to refresh the page but that's annoying. I don't want to ask offline ...
2
votes
1answer
165 views

Obtaining an Access_token to read Page Insights

I've been working on using python to get access to Facebook insights information. I was able to get public information (e.g. 'likes' from cocacola's page) in addition to app insights for apps that I ...
2
votes
2answers
244 views

Refresh access token without user intervention

I am using facebook sdk for android to fetch the FB data. The access_token that is received after successful login expires after a certain time. I want to refresh the token token in the background. ...
2
votes
1answer
582 views

Facebook Connect Class with Singleton : Access token issue

I have created a singleton class called "LoginFacebook" which is meant to connect user to Facebook and to perform the different request. The problem is that I get an error about the access_token. Here ...
2
votes
1answer
540 views

Problem retrieving an access token with code returned

I am having a problem retrieving the user's access token after he/she has authorized my Facebook application to access their information and post for them, etc... Facebook returns a code query string ...
2
votes
1answer
172 views

OAuth Request and Access Tokens

I want to implement oauth 1 in my website and I was just wondering if I have to change the request token once it was exchange to an access token? Thanks in advance
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
1answer
281 views

Youtube API single-user scenario with OAuth (uploading videos)

This question has been already asked, but never answered. I want to write some php scripts that would upload video to my own YouTube account. I have already registered the application and have the ...
2
votes
1answer
471 views

Help Refreshing Yahoo's OAuth Access Token in Ruby

I'm at the point of involuntary hair loss while trying to refresh the Yahoo OAuth access token in Ruby. Using the OmniAuth and OAuth gems, I'm able to get an access token from Yahoo, however it ...
2
votes
1answer
401 views

Retrieving token and secret from gdata.gauth.OAuthHmacToken python object

I'm following Google's great sample code for three-legged OAuth. Specifically, I'm looking at the python version of the code. I'm stuck between 'Upgrading to an access token' and 'Using an access ...
2
votes
1answer
1k views

How to programmatically add an event to a page using Graph API?

Is it possible to programmatically add an event to a page using Facebook Graph API? If yes, what HTTP request shall be made? For example, Startup Weekend has events on its Facebook page. These events ...
1
vote
0answers
8 views

Which access_token do I use to upload a video to an iframe based page-tab application?

I want to let users upload a video to a page that I am admin for. And the application has been added as a tab to this particular page. Using the example from ...
1
vote
1answer
24 views

Extending existing offline access_tokens

i have to extend the offline access token of all users stored in my database here i found the method https://developers.facebook.com/docs/offline-access-deprecation/ but when i used this call ...
1
vote
1answer
70 views

How to refresh token with Google API client (PHP)?

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

Facebook Pages (/me/accounts) access_token Expiration?

Bear with me, I know access_token questions have been asked a thousand times but I can't seem to find an answer to this specific question. Is there an expiration date for Facebook Page (not app, not ...
1
vote
1answer
88 views

After disabling offline_access and removing the app from app settings I no longer get an extended access token

I disabled offline_access so that I could get extended access tokens without asking for the offline_access permission. While testing, it seemed to work fine at first. I got a token that expired in ...
1
vote
1answer
56 views

Facebook Oauth Access Token Different when using Graph API Explorer

(Disclaimer: The access_tokens and appIds in this post are fake and are just intended to look real) I'm trying to generate an access_token using the call to the following: ...
1
vote
2answers
80 views

Permanent read access to a user's Facebook stream since offline_access was deprecated?

I had an idea for an app that would periodically access peoples' Facebook data. However, Facebook just deprecated the offline_access permission which prevents tokens expiring in a set time period. Is ...
1
vote
2answers
85 views

Facebook: Post on Page as Page issue (access token / php)

I'm totally frustrated with my first facebook app project. I'm having major issues with what seems to be a simple task. I want to setup a cron job on my server (easy) that will post something smart ...
1
vote
2answers
215 views

Facebook access Token with longer expiration

I am trying to follow this tutorial on getting a token with longer expiration time . The Facebook connect is done on the client side (Js sdk). The steps I take are: enabled 'deprecate ...
1
vote
1answer
138 views

window.fbAsyncInit / FB.init does not appear to be running

I am just getting started with the Facebook JavaScript SDK, all I want to do is enable users to log in to my web site with their FB account. First I put in the <div class="fb-login-button">Login ...
1
vote
1answer
160 views

Retrieving facebook user wall posts through graph API

I'm currently working on a facebook app which captures wall posts for a specified user, page or group, after a user has authorized the app I quote the access_token that is returned to call the method ...

1 2 3 4 5 6