The OAuth access token specific to the Facebook API.

learn more… | top users | synonyms

1
vote
1answer
113 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 ...
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. ...
0
votes
0answers
712 views

How does extendAccessTokenIfNeeded work in Facebook?

I follow the document Extending the Access Token to extend access token, but encounter following error, who can point out where is incrrrect: I use following code to login facebook: ...
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 ...
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: ...
0
votes
1answer
194 views

Unable to query the 'permissions' FQL table with the app access_token instead of the user access_token

I'm trying to query the permissions FQL table with my app access_token with something like: https://graph.facebook.com/fql?&access_token=337313372909587|U_TaFVlx-9D6vOJXXXXZp22034k&q=select ...
1
vote
1answer
494 views

Facbook: POST userid/apprequest throws an exception (Invitation is sent though)

I am using trying to send app request to friends, My code always throws exception but I see that my friends get the App request. I am confused. Can someone let me know hot to handle the request ...
0
votes
1answer
174 views

Facebook Graph Batch, only takes top-level access_token

I'm using the Facebook Graph Batch API to send one message / different messages to registered people's FB walls. I'm defining an access_token for each user, and the obliged top-level access_token ...
0
votes
1answer
404 views

access token expiration/renewal

I have a personal website on which i want to display my latest facebook comment. Everything works fine, but i'm not sure how the access token expiration works. I have a two months access token, so ...
1
vote
1answer
186 views

Access tokens?

I am developing an app in PHP hosted on Heroku, and my biggest problem is not getting access tokens for a user to get my app to fully work. The app works perfectly for me (as I am an admin), but other ...
1
vote
1answer
730 views

Publish on page using page Access Token and fb_exchange_token

I'm trying to set up an app to publisher on page owned by the user. 1)I ask for permission with js with manage_pages,publish_stream scope 2) $fb->api('/'.$fb->getUser().'/accounts', 'GET', ...
0
votes
1answer
399 views

Facebook API access token - when I know uid and password

I have simple situation: I know both (user) UID and password and I want to create API requests, such as https://graph.facebook.com/220439?access_token=.... What I don't want is to redirect user to ...
0
votes
1answer
937 views

Requesting long lived access_token on serverside flow

I have a Java web app that posts items to our users facebook walls, when the user initially signs up we get a 60 day access_token which is persisted to our database, now that the offline_access is be ...
1
vote
0answers
834 views

Facebook Refresh Access Token: Server returned HTTP response code: 400

I am trying to automatically refresh a users OAuth2.0 access_token by calling the new facebook endpoint detailed here I am building a Java (SEAM) web application, the facebook authenticate is done ...
0
votes
1answer
212 views

Facebook auth access link stopped working, i only get generic error message

I have a facebook page tab where i try to get the access token with the link https://www.facebook.com/dialog/oauth?client_id=[APP_ID]&redirect_uri=[REDIRECT_URI] I has been working, but now all ...
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
1answer
491 views

How do you generate an expired Facebook Access Token for testing?

We are trying to update our app and server to handle the upcoming Facebook offline_access deprecation. However, we're having trouble testing it since we can't find an easy way to generated an expired ...
-1
votes
2answers
353 views

Getting an access token without a browser

To give you some background information, I am currently working a backend to an application that keeps count of Facebook notifications on a very small 32-character LCD screen, hooked up to an Arduino. ...
1
vote
1answer
223 views

New offline_access token implementation Facebook App with javascript

I have been working with Facebook OAuth 2.0 using JavaScript SDK. I saw that Facebook has recently changed the "infinite" expiration time access token feature and now one has gets an Access token for ...
1
vote
3answers
805 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 ...
0
votes
1answer
4k views

“An active access token must be used to query information about the current user” facebook error

I'm developing an app on Facebook and I'm having some problems. Basically, after the user wins the game, I'm asking him to post his success on his wall (like "Look! I won the game! Play this game too ...
0
votes
1answer
2k views

How do I obtain a Facebook access token for an app to post on a company wall?

So here is what I am trying to do. I have created my Facebook application and I have been able to use the Graph API explorer to specify the application in the top right. Some more detailed ...
0
votes
2answers
2k views

C#: Get a user access token

I'm developing a desktop application in C#. After visiting https://www.facebook.com/dialog/oauth?client_id=123 the user logs in and the user access token is attached to the redirect uri. Its no ...
6
votes
2answers
2k views

How to handle Facebook's deprecation of offline_access when you use token both in both iOS app and a server

Facebook's deprecation of the offline_access permission is coming May 2012 and the documentation isn't giving us enough information on how to handle it. We have an iOS app and corresponding service ...
0
votes
3answers
395 views

Facebook-offline_access alternatives: How long will a token created from an app last so I can pull my page's feed into my website

Main Question: (since offline_access permission) is deprecating; how long will an access token created by hitting the below url with app's ID and secret last? ...
0
votes
0answers
723 views

Invalid OAuth access token signature

This is the code I used in posting action in PHP but i'm getting an error "Invalid OAuth access token signature." `try{ $params = array('video'=>'{videoLink ...
3
votes
1answer
1k views

how to get oauth access token for facebook using ruby

Am trying to get oauth access token for facebook programmatically in ruby. My code is as follows: client = OAuth2::Client.new( APP_ID, SECRET_ID, :authorize_url => "/dialog/oauth", ...
8
votes
1answer
2k views

What is the code for getting a refreshed Facebook token in an Android app?

I am developing an Android app. With the impending deprecation of Facebook's offline_access permission I am trying to use the Graph API to extend the Facebook token. ...
0
votes
1answer
2k views

Access token Facebook graph api?

After created an app on FB, I get an access token XXX when I open https://graph.facebook.com/me/likes?access_token=XXX it does show all information that I likes fine. but when I open to see from ...
12
votes
2answers
1k views

Is it possible to extend Facebook tokens with extendAccessTokenIfNeeded in an Android app?

I think this might effect a lot of Facebook/Android developers and yet there does not seem to be that much discussion on the topic... My question Has anyone successfully refreshed a token using the ...
0
votes
2answers
532 views

Facebook Single Sign On to register or log-in in server (Android and Ios)

We are implementing a project where the users post and get some information from a server. The scenario is that the user can create account/login both manually (giving email and password) and with ...
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 ...
0
votes
1answer
164 views

I don't have offline access to fb user - should I store friends list in session? RoR, Devise, Omniauth & FBGraph

I authenticate a user on my app via facebook. While doing this, I obtain the access token and perform my validation. However, soon after signing in, I will have to present my user with their list of ...
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 ...
0
votes
1answer
550 views

Facebook Registering Achievement access_token issue

Solution Edit: Turns out you can't use the PHP SDK to return the correct App Token, nor can you hit the OpenGraph options in the App section of the Developer site, click "Get Code" and grab the app ...
0
votes
2answers
161 views

accecc_token vulnerability - create a post by sending an HTTP POST request to facebook

I want to post on my facebook page by sending a HTTP POST. The way I am doing this is by creating a permanent access_token that is used to post to my facebook page. The problem is the access_token ...
0
votes
2answers
283 views

After extending an access token, does that make it valid for another 60 days?

If I requested and acquired an access token on, say, the 1st of March, and extended it on 30 days later, will it be valid for another 60 days, or does it require reauthorization from the end user? ...
3
votes
1answer
353 views

Explain the Facebook access_token

This whole Facebook access_token thing is driving me nuts. All I want to do is fetch a user's public Facebook posts. It used to work by simply doing: ...
0
votes
1answer
908 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 ...
3
votes
1answer
144 views

How Twitter make Facebook's access tokens timeless?

How Twitter make Facebook's access tokens timeless and they do not become obsolete. Or Twitter and Facebook's access tokens is timeless?
1
vote
1answer
633 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 ...
7
votes
4answers
583 views

Extended access token from Facebook not working properly

I am having trouble since Facebook has removed the offline_access permission. Tried 2 things: I am making the call as suggested by Facebook. https://graph.facebook.com/oauth/access_token? ...
0
votes
1answer
396 views

How to generate acces token on facebook through iphone app

I need to generate access token for particular facebook account through app on iphone. Please give some guidelines to start this work.
0
votes
1answer
503 views

Alternate to Facebook login authentication iFrame

I am new to Facebook app development. I need to integrate Facebook with my website. On investigation ( http://developers.facebook.com/docs/guides/web/#login ), I found that to access Facebook user ...
3
votes
1answer
4k views

Get wall feed from a public Facebook page using Graph API - is it really this complex?

I have started off by reading Displaying Facebook posts to non-Facebook users which is of some use but I cannot believe it is this difficult to get a public feed from Facebook. The page I want a feed ...
-5
votes
1answer
534 views

Given facebook username, password, and application's ID can a web application acquire user id and access token? [closed]

I'm developing a web application using PHP. This PHP will contain a function which accepts facebook username, password, and application's ID, and return (or write) user's ID and access token ...
0
votes
0answers
767 views

Post on wall fan page to a fan page that likes

I'm trying to post from fanpage1 (where I am admin) to fanpage2 ( it's liked from fanpage1). I'm trying this code: FB.api('/' + from.id, {fields: 'access_token'}, function(resp) { // it returns ...
0
votes
1answer
198 views

posting to facebook app via php

I'm fairly new at facebook api and I need some help. I have a website and I would like to update a) an image and related text to my facebook app. This is to be done automatically from my web-site ...
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 ...
4
votes
2answers
681 views

Call facebook api wthout offline_access token

I have a problem in using facebook api. My customer makes my facebook user admisistrator of his facebook product page. I use a java engine which is scheduled for retriving this page insight data. As ...

1 4 5 6 7 8