Questions tagged [facebook-php-sdk]

The Facebook PHP-SDK provides Facebook Platform support to your PHP - based web apps.

This library helps you add Facebook Login and Graph API support (targeted posting, ad management, photo upload etc.) to your Website.

Documentation facebook-php-sdk

3679 questions
1
vote
1 answer

How to retrieve Facebook user profile unique url/id

I am planning to have a competition as a first promo for my page. I will be using PHP for scripting. I will uploading the scripts to a web hosting server and call the page url on FB. On FB, I will creating unique woobox app. I will call this page on…
1
vote
1 answer

Get all Facebook posts of user wall

I'm using the Facebook php sdk to try to get posts of a users wall. When I use the following code I only get some reaction on events and some mentions, but but not the messages, photos's etc. I actually posted on my wall? What can be the…
waterschaats
  • 994
  • 3
  • 18
  • 32
1
vote
1 answer

Facebook allowrequest for unsubscribed friends

How I can use FB.ui({ method: 'apprequests', message: 'Gooby pls' }, requestCallback); to send a request for my app ONLY to friends that have not received a request yet?
user884352
1
vote
0 answers

Facebook Real time Updates in user feed

I am creating a web application using php. I have a facebook sign in link in my application. When a user sign in I would like to show his real time updates on his news feed and wall in my site. I am using facebook PHP SDK. I have read about real…
1
vote
0 answers

Did Facebook Connect add Email Permission as an extended permission?

Last I saw that 'email' permission in the authentication process was part of the initial dialog (along with basic information) for all apps. However, today I noticed that for my app it shows as an additional step (like extended permissions) after…
gsharma
  • 178
  • 7
1
vote
0 answers

Cannot get a 3 query FQL multiquery to work with Facebook's PHP SDK

I've got my 3 queries all set up in my connection and configuration to Facebook. The configuration is correct as I'm getting return values. Here is my queries: $fql_friends_fan_pages = array( 'query1' => "SELECT uid2 FROM friend WHERE uid1 =…
Prusprus
  • 7,987
  • 9
  • 42
  • 57
1
vote
1 answer

Localhost facebook login not working for lower level of the url

Thanks in advance for reading. I've been working with facebook login (both php and javascript sdk methods) for a couple of years and I'm facing a particular problem with new apps I'm developing. I have an app in my localhost configured as virtual…
chuysbz
  • 1,262
  • 6
  • 18
  • 47
1
vote
1 answer

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( EXTENDED_ACCESS_TOKEN_IN_DB ); after creating my application…
hungerstar
  • 21,206
  • 6
  • 50
  • 59
1
vote
2 answers

Application is misconfigured

I am developing a mobile web application, some times it is showing that "the mobile version of the app is unavailable because it is misconfigured for mobile access". Why this is happening? I noticed that it is happening when user is logout form Fb…
1
vote
2 answers

Facebook timeline wallpost doesn't work as aspected

Im using the Facebook SDK Api [PHP] to post automaticly on a timeline wall. I created a App and requested the access_token with the following permissions: manage_pages,publish_stream,offline_access. Im using now the access_token to post the message…
1
vote
1 answer

Facebook Open Graph Watch action

I'm trying to make a Facebook video application so users can have a video stored on my site displayed on their wall using Facebook Open Graph. I'm using the below code for user login.