0
votes
0answers
23 views

Fb_appid_access_token not set when redirect_uri present

When redirect_uri is provided in getLoginUrl for facebook login integration, the fb_appid_access_token session is not visible. For some reason the fb_appid_access_token session is not set or may be ...
0
votes
0answers
46 views

Multiple Facebook Apps/IDs for 1 Website

Is it possible to use multiple facebook apps/ids on one website.? For example let's say I have 2 apps, called userless-app1 and user-app2, that will perform different functions on my website. ...
0
votes
2answers
147 views

Cannot obtain page access token through an app that is granted the manage_pages permission

I'm trying to develop a PHP application that will let me make new posts on my Pages automatically, through a cronjob, while I am offline and not logged into Facebook at all. I'm aware that the ...
0
votes
1answer
126 views

When Facebook removes an App, it puts the site's domain on a blacklist?

I got my app removed by Facebook last week. Now I'm trying to build a new one correcting the problems, but I always get an error authenticating the user. SECURITY WARNING: Sharing the above URL ...
0
votes
1answer
35 views

What is the difference between these facebook access tokens?

I'm developing a FB App that can manage pages but I need to clarify this: what is the difference between $page_info = $facebook->api("/$page_id?fields=access_token"); and $aToken = ...
0
votes
1answer
141 views

Facebook gives me two different acces tokens, PHP SDK

I am using Yii as framework but i think that wouldn't mather. At this point i use the PHP SDK to get the accounts information from an user, this works fine while my user logged in at first. But after ...
0
votes
1answer
191 views

Facebook Login As App, access token doesn't work

I am trying to get events from a Facebook page via Ajax. But there should be no login process for user. For this reason I am trying to implement "Login as an App" by following the the documentation ...
2
votes
1answer
482 views

How can I pass my Facebook access token that I got in JS SDK to my PHP script?

I have a functional facebook application that use the JS SDK. I can use the JS SDK to get my users facebook ID and access token, and it seem to work fine. However, my JS script need to call some ...
0
votes
0answers
53 views

How to send user emails when using Facebook Connect/App (email storage)

Many websites implement now FAST sign-in by using Facebook Connect or by creating a facebook app to let users directy sign in on their website, i.e WITHOUT any need for type their email on my website ...
-2
votes
2answers
450 views

facebook access token is invalid - trying to post to facebook website-“page” via app using a cron

I am trying to post to my website's Facebook fan-page via a cron on my server. I created a user on Facebook named "John Doe", i made him admin on my website's Facebook fan-page and then i created an ...
0
votes
1answer
224 views

Delete user score as an App Admin with Graph API Explorer

Is there a way of deleting a specific user Score from the Graph API Explorer? Suppose there was a problem with the game and some users got wrong scores. Is there a way (assuming I'm the app admin) to ...
0
votes
1answer
274 views

Posting using App Access Token

I am trying to publish a feed using graph API using application access token. I am trying to achieve a result similar to the one in the URL below: Sample Image I am able to create a feed but ...
3
votes
1answer
578 views

Facebook App Type: Which one to pick for mobile AND web?

In the Facebook App Settings ☞ Advanced ☞ Authentication I can pick "Web" or "Native/Desktop" as App Type. The info bubble says: Only select Native/Desktop if you are a Native iOS or Android app, ...
1
vote
1answer
417 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
0answers
78 views

FB duplicate App ID

I registered an app with FB and was using the APP ID (API key) to let users log in using FB from both web and a mobile app and everything was working fine. Till we started seeing some intermittent ...
1
vote
1answer
517 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
2answers
164 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 ...
5
votes
4answers
7k views

Need Help on OAuthException Code 2500

I am trying to develop an Facebook application (apps.facebook.com/some_app) using PHP where I need to present some information based on user's music interests. I found that its under "user_likes > ...