The OAuth access token specific to the Facebook API.

learn more… | top users | synonyms

2
votes
1answer
42 views

Access tokens and offline application after approval [closed]

Right hello there, I have recently come to find out they are removing offline access for publishing on the 5th December and need a hand with a quick question and a possible solution would be ...
2
votes
1answer
120 views

How to delete app scores with “app access_token”?

I am not good at English. Sorry for that~ Here is my code for deleting app scores. I am using this facebook game tutorial ios-friend-smash [FBRequestConnection startWithGraphPath:[NSString ...
2
votes
1answer
277 views

cannot fetch data using Facebook app access token

I am trying to write a Facebook application. I can easily use permissions from a Facebook user. And I am trying to fetch some data from different Facebook tables using FQL. These are the permissions ...
2
votes
1answer
138 views

Page access tokens from web app

I'm writing a facebook web app with Graph API for publishing on a page wall automatically. I'm the page administrator and I've set up the app permissions for requiring manage_pages, offline_access, ...
2
votes
2answers
184 views

Refreshing an expired access token for specific user

The application which I am building maps a user_id to multiple facebook accounts. I have access tokens for each of these mapped accounts and everything works nicely. There is a problem, though, when ...
2
votes
1answer
431 views

Error Code: 101 Missing user cookie

In my application, I'm manually setting an access token that's stored server-side. When I try and use an FB.dialog to show an invite dialog, the web view displays "An error occured with . Please try ...
2
votes
0answers
94 views

with offline_access migration enabled, trying to extend the access tokens to 60 days seems to fail ~70% of the time. Why would that happen?

I'm extending client-side access tokens as documented here: https://developers.facebook.com/roadmap/offline-access-removal/#extend_token But I've noticed that very frequently the request returns the ...
2
votes
1answer
2k views

Facebook Javascript SDK extend access token get “Invalid OAuth access token” - 190 - “OAuthException”

I try to use javacript SDK to get access token and then extend that access token for 60 day. I got reponse error like this from response: Object { message="Invalid OAuth access token.", ...
2
votes
0answers
366 views

Could I Extend Facebook Access_Token Expiration Time without Single Sign-On?

I am a newbie on integrating facebook to iphone. Now I encounter a problem when removing offline_access. Who can give me a hand? please I use following code to get facebook authorization. ...
2
votes
1answer
1k views

Malformed access token

In my application I am using facebook accesstoken to post a message to users fan page wall. Now while posting am getting an error like Malformed access token I am able to read the posts from fan ...
2
votes
0answers
782 views

Facebook Client-side authentication and offline_access deprecation

Before you start yelling at me, I know many users already asked for something like this, but I read all of them and couldn't find any reply related to my specific case: I eventually managed to get ...
2
votes
2answers
794 views

Protecting app secret for extendAccessToken usage (Java/Android)

I'm developing for Android and currently use facebook-android-sdk for authentication. From what I can see there is no use of the app secret in that code which is great. Now that Facebook are going to ...
2
votes
0answers
836 views

Numerous exceptions thrown by base_facebook.php [closed]

I have a Facebook Application which works but every day I get an exception while testing. All exceptions are being thrown by base_facebook.php - is anyone else encountering these exceptions? Anyone ...
2
votes
0answers
370 views

getting facebook Access token from java app

I am working on a java desktop app in which I can access Facebook Info. By copying and pasting the Access Token in my code for testing purpose, this works great. But My problem is getting that Access ...
2
votes
2answers
807 views

Facebook Access Token change format

My Facebook application for Android has always returned an access token of the type: app_id|session_key|xxxxxxxxxxxxxxxxxxxxx Unfortunately a few hours ago it returned this token: ...
2
votes
1answer
878 views

facebook: how to grant a website permanent access to your wall?

I am creating a website and I would like it to display the posts present on the wall of my own Facebook profile page. These posts must be visible to any user visiting my site. Having read various ...
1
vote
1answer
1k views

Facebook Application Auth Token Get Error

I am trying to request the authtoken for my app via the Facebook API Graph Exlorer following the facebooks instructions. When I do a get call with a URL with the following form: ...
1
vote
3answers
807 views

Sharing Access Tokens Across Apps

I want to provide a service using the facebook api to third parties. Is it possible for us to share access tokens? If the third party gives my service a user's access token, can I access that users ...
1
vote
4answers
319 views

AppFog - Unauthorized source IP address

I host an Facebook application (https://apps.facebook.com/igoaltip/) on AppFog. Suddenly it stopped working. When I try to get information about the user using user access token ...
1
vote
3answers
271 views

How can my website app publish on facebook timeline when the user is not logged on facebook?

I would like to know if there is a posibility of publishing my actions on facebook timeline if the user is not logged on facebook, I mean through a cron job, actually my users have an extended token, ...
1
vote
1answer
240 views

By using App Access Token Only, how to get the list of users of my app

I am new to facebook dev, I read the document but still not getting close to what I want... by using Graph API with App Access Token, I cannot figure out how to get the list of users of my app. I ...
1
vote
1answer
138 views

Facebook Access Token Expired - iOS 6 Social Framework

I'm making an app based on iOS6 Social Framework...it was working fine but now after few months got an weird error. My NSLog of imported JSON Facebook data to a NSDictionary is: profiledictionary: { ...
1
vote
2answers
45 views

Is there a way to register an application on Google+ like on Facebook?

In particular I'm interested in the possibility of getting an App Access Token with no expiration time, exactly as I do with Facebook. I want to publish on behalf of the user via server, and I found ...
1
vote
1answer
240 views

Python facebook-sdk Graph api access error

I am using Python facebook-sdk to fetch users's posts in Facebook page. In facebook Graph api explorer, the request went well: Get .../coldplay/feed?limit=2 In my program, the request: In [27]: ...
1
vote
1answer
399 views

Passively get new access token after access token expires

I am working on a simple Facebook App that will allow me to post from my client's website to my client's Facebook Fan Page. Right now I set the access token with $facebook->setAccessToken( ...
1
vote
2answers
325 views

Will access token work when user is offline?

I have read offline-access-removal , how to handle expired tokens and How to extend access token validity since offline_access deprecation too. They tell about deprecation of offline access_token and ...
1
vote
1answer
252 views

Unknown error when trying to get long lived access token

I am trying to get a long lived access token for one of my pages, using this code: $page_info = $facebook->api("/page-id?fields=access_token"); $args = array( "client_id" => ...
1
vote
1answer
514 views

Facebook Pages - How to get Access Token permissions - “perms” for a user on graph api?

Since Facebook added Page Admin roles on pages (http://developers.facebook.com/docs/reference/api/page/), when getting the tokens via graph.facebook.com/me/accounts?access_token=XXXX, it lists: ...
1
vote
1answer
306 views

How does facebook match access token to the consuming application

I have been trying to wrap my head around creating a RESTFul API using Oauth for both 2-legged and 3-legged authentication scenarios. I have read a lot of articles and I am at the moment just very ...
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 ...
1
vote
1answer
47 views

For How Long Time Can My App Have Access?

I need to create an app which can post photos on behalf of the user to his/her wall or photoalbum. What is the longest possible time the app can post photos without the user actually visiting/using ...
1
vote
1answer
274 views

Facebook invalid access token after clearing cache&cookies

My app is not loaded and I get the erro below in these two scenarios: a) The first time I access my app after clearing cache & cookies, or from a PC I haven't used before, with any browser. b) ...
1
vote
2answers
95 views

How can I detect whether my facebook access token is invalid or not?

I know about handling invalid access token by using exchange token method.But my question is how can I detect it as invalid?Anyone please help me.Thanks in advance.
1
vote
1answer
99 views

How to build a Facebook app with PHP that shows albums?

I want to build a Facebook web application that uses the graph API to show only the albums of a specific user. That user is always the same, and I know his credentials. My code so far: ...
1
vote
1answer
801 views

Posting scores with app access token

I'm trying to post a score from my server. I have my app set up as a game. I've got my app access token. I'm POSTing to https://graph.facebook.com/USER_ID/scores I have authorized and given ...
1
vote
1answer
125 views

Scheduled Facebook posts using JS API

I'm trying to write a client-side JS function to send a post to a Facebook Fanpage at a specific time using FB.ui. It used to be possible with the old JS SDK. Was that changed? Would appreciate any ...
1
vote
1answer
200 views

At what point is 'TokenManager.StoreNewRequestToken' called in the OAuth 2.0 DNOA version

The point is, I have an app (I feel like half SO knows this already) that read info from Twitter (OAuth 1.0a) and Facebook (OAuth 2.0 'ish). In the Twitter version I use the old WebConsumer class. ...
1
vote
2answers
796 views

Facebook Page access token without creating application

I am bit confused with the facebook part of getting post from the facebook page for say example http://www.facebook.com/pages/Favourite-Tv-Shows/448925518469095 For this url i am trying to generate ...
1
vote
1answer
1k views

NodeJS everyauth get access token

I am trying to get the access_token for a user using the FB API + everyauth module for NodeJS, and then I will make serverside graph API requests using the Facebook_Graph_API module to actually make ...
1
vote
1answer
114 views

What controls which user posts are visible via the Facebook Graph?

I'm making requests like the following: https://graph.facebook.com/USER_ID/posts?access_token=TOKEN When the TOKEN is from the Graph API Explorer (from https://developers.facebook.com/tools/explorer ...
1
vote
2answers
2k views

How to get permanent Facebook access token using java

If you using Facebook graph API, you can see all public information of someone if that person set those information public, only few things you need to do: open a browser, log-in to Facebook and know ...
1
vote
1answer
375 views

Exchanging an short-term Access Token a second time?

If you exchange a short-term access token to extend it to 60 days using ...
1
vote
1answer
910 views

Posting an image to fan page album using Facebook API

I have created an Facebook App. I need user to be able to post images to my facebook page's album through that App and for that I need to grab Access Token of the page. I can only get access token ...
1
vote
1answer
634 views

Do I need to keep my access token secret

I'm using the actionscript api for a flash application on the web. I would like to perform actions which require an access token, but I'm unsure of the security implications of using this in flash ...
1
vote
1answer
499 views

Facebook access_token strange issues on website while requesting fb friends

i have an application written with symfony 2 (and using an fosfacebookbundle with custom userprovider from fosub). i use the js sdk and the php sdk from facebook in that applicatoin. log in into my ...
1
vote
1answer
608 views

Issue with access token provided by App

We recently launched a new app, and one of the features was to provide a discount if a user had liked a particular page. I had successfully tested the functionality on numerous accounts, and we went ...
1
vote
1answer
9k views

An active access token must be used to query information about the current user

<?php define('YOUR_APP_ID', 'x'); define('YOUR_APP_SECRET', 'x'); function get_facebook_cookie($app_id, $app_secret) { $args = array(); parse_str(trim($_COOKIE['fbs_' . $app_id], '\\"'), ...
1
vote
0answers
49 views

Facebook Login using Javascript SDK does not give extended access token

So, Facebook's documentation regarding access tokens says: Apps using the Facebook SDKs for Javascript, Android and iOS, desktop apps or apps using the server-side login flow automatically ...
1
vote
0answers
46 views

Getting Generic Access Token, Invalid callback

I am trying to get a generic facebook access token. All the tutorials I read recommend using the call below. https://graph.facebook.com/oauth/access_token? client_id=YOUR_APP_ID& ...
1
vote
0answers
72 views

facebook on curl command line

I am trying to make an application using cURL on commandline for my MIPS based linux box. As test steps Using FB Graph API, I am able to post status updates, photos etc on to the user's wall. But for ...

1 2 3 4 5 8