Facebook Graph API is a graph-db style programming interface for languages like PHP, ActionScript, JavaScript etc.

learn more… | top users | synonyms

61
votes
6answers
70k views

How to check if a user likes my Facebook Page or URL using Facebook's API

I think I'm going crazy. I can't get it to work. I simply want to check if a user has liked my page with javascript in an iFrame app. FB.api({ method: "pages.isFan", page_id: ...
11
votes
4answers
15k views

Querying Users who 'like' my Facebook Page

I was wondering if it was possible to query the following: List of (all) users who like my facebook page, and Additional information those users have made publicly available (beyond first and last ...
49
votes
7answers
28k views

How to extend access token validity since offline_access deprecation

Since the offline_access Permission is deprecated in Facebook's Authentication flow, we have problem geting the so called long lived access tokens without that permission. In Facebook's document ...
42
votes
8answers
62k views

Send private messages to friends

I need to get via Facebook connect user's info and send a private message to all of his friends. Is it possible?
43
votes
4answers
37k views

'Like' a page using Facebook Graph API

Using the Graph API I'd like to be able to have an authorized user "like" a page. I tried posting the following https://graph.facebook.com/${PAGE_ID}/likes?access_token=${ACCESS_TOKEN} And I get ...
1
vote
2answers
340 views

Current Month Facebook Friends Birthdays in Android

I am writing an app in which i am fetching list of Facebook Friends using Hackbook Sample Code but now i want to fetch list of Facebook Friends those birthdays in Current Month, to get list of all ...
5
votes
2answers
4k views

Is uploading videos from an SD Card to Facebook possible with the Facebook SDK?

Can we upload videos from an Android device's SD Card to a Facebook account via the Facebook SDK? If so, what are some simple examples?
22
votes
6answers
67k views

Facebook Graph API, how to get users email?

I'm using the Graph API, but I can't figure out how to get a logged-in users email address. The intro to Graph states "The Graph API can provide access to all of the basic account registration data ...
95
votes
4answers
12k views

Design for Facebook authentication in an iOS app that also accesses a secured web service

Goal: Allow a user to authentication with Facebook into an iOS application which requires access to a protected web service that I'm running. Assumptions: There is a native authentication (and ...
33
votes
10answers
46k views

how send message facebook friend through graph api using Accessstoken

Can anyone help me to send message to facebook friends using graph api. I tried $response = $facebook->call_api("/me/feed", "post", "to=john","message=You have a Test message"); It's not ...
7
votes
4answers
7k views

Liking a page on behalf of a user?

I'm trying to get a user to 'Like' a page via the SDK. User is signed in and I get a valid access tokken form the cookie. My APP has asked for permissions read_stream and publish_stream. I can ...
17
votes
1answer
9k views

What are all the custom URL schemes supported by the Facebook iPhone app?

I am trying to see what information is available about the Facebook app on the iPhone So far I have found a couple sites containing limited information. And I was able to figure out the Facebook ...
7
votes
1answer
16k views

Publishing To User's Wall Without Being Online/Logged-in - Facebook Sharing Using Graph API

Hi i'm new to facebook sharing. I want to make a user log in using his uid and then store these for further uses The primary purpose is to share links in the user's wall next time onwards without ...
13
votes
4answers
6k views

Posting Photo to facebook fan page via iOS app by regular non-admin users

I am trying to post a photo to my apps facebook fan page and to the users wall also. I have been successful to post the photo on the users wall, but failed to post it in the fan pages wall. (The user ...
3
votes
2answers
6k views

How to check IF user has ALREADY liked the facebook page?

I have a like button on my website (which is for users to like the fb fan page). If the user clicks like, I check to see if the even has been fired (event subscribe), and then display some content to ...
55
votes
9answers
34k views

Facebook 'Friends.getAppUsers' using Graph API

I have an application that uses the old REST API call Friends.getAppUsers to get the list of friends for the current user that have authorized my application. I have read the documentation, how do I ...
2
votes
1answer
4k views

Facebook: post image and description to wall and in page album via php

I want users to post an image on a facebook page via a form on a website. When they have logged in via facebook on this website, they can select an image from their computer. Once they have selected ...
19
votes
5answers
38k views

Facebook API: Get fans of / people who like a page

I'd like to get a list of users who like a certain page or a fan of it. The FB API documentation states that you can only get the count of the fans of a certain page using the social graph, but not ...
4
votes
2answers
2k views

Fetching list of friends in Graph API or FQL - Appears to be missing some friends

Any chance the 'me/friends' graph api or friends FQL table return some friends only? I've checked the results and it's slightly less than the count I see on facebook.com
38
votes
28answers
40k views

Redirecting to authentication dialog - “An error occurred. Please try again later”

Why does it always happen to me? This happens after my application verify for user user login and redirect user to the authentication page: ...
3
votes
4answers
9k views

Get the Friends of my friend using the Graph API

I am trying to do a very basic thing with the new Graph API. I already know how to get my friends: "https://graph.facebook.com/me/friends?access_token=4333ed34d..." But if I have a friend who's ID ...
37
votes
8answers
11k 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 ...
16
votes
4answers
18k views

Like button in iOS application

Does anybody know how to place Facebook "like" button into iOS application? I've tried the method described in this blog post. But I do not really like this method, because its ugly Login dialog. And, ...
4
votes
3answers
13k views

How can I tag a user in a photo using the Facebook Graph API?

I tried: $args = array( 'access_token' => $access_token, 'id' => $uid ); $url = "https://graph.facebook.com/{$idPhoto}/tags"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); ...
12
votes
4answers
9k views

how to set a facebook profile picture using the graph api

Is there any way to change the user's profile picture using the graph api? I know you can't with the rest api (reference), but I could not find anything in the new graph api. Thank you!
6
votes
5answers
5k views

Fans-only content in facebook with asp.net C# sdk

Hi i'm developing an application in facebook with c# sdk and i want that the user whom liked my page can only use my application. (Like woobox) I found some solutions in php in this link but there ...
3
votes
3answers
9k views

Facebook new javascript sdk- uploading photos with it!

I am trying to upload a photo to facebook album with this javaascript code. FB.api('/me/photos', 'post', { access_token: GetToken(), name: 'uploaded photo', ...
14
votes
2answers
5k views

Facebook Graph API “search” by email suddenly stopped working

We have an application that issue search requests (FB Graph API) using an email address as the main query parameter, so basically we are searching users by email (e.g. ...
4
votes
1answer
6k views

Facebook 60 day access token and Deprecated Offline_Access

Facebook's "Deprecated Offline Access" doc (http://developers.facebook.com/docs/offline-access-deprecation/) states the following: *Server-side OAuth Developers If the access_token is generated ...
4
votes
1answer
3k views

Android Facebook chat example project

I found sample Facebook Chat Project for iOS here. also i got the facebook chat doc here Same way, Did any one know facebook chat example app or way to implement fb chat in android?
4
votes
2answers
2k views

How to list all comments in my domain

I am using the HTML5 version of Facebook Comment in my website. I have my own Facebook APP Id. Using Graph-API, and FQL (I think this is how to do it), I want to list all the Comments posted in my ...
2
votes
1answer
2k views

How to get user's network information using Facebook Graph API? (PHP)

I have been playing with Facebook Graph API around a week, and I still could not find how to get user's network information? I don't know if the Graph API stores user's network; I didn't see such ...
3
votes
1answer
977 views

Implication of Facebook offline_access deprecation

I am just getting into adding Facebook opengraph into my app. I want to get certain graph attributes from the user, but it needs to be done continuously, even when the person is not on the site. ...
62
votes
14answers
45k views

SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed

I am using Authlogic-Connect for third party logins. After running appropriate migrations, Twitter/Google/yahoo logins seem to work fine but the facebook login throws exception: SSL_connect ...
23
votes
5answers
13k views

Tagging friends in status updates from Facebook API

I recently came across this blog post that said that it's possible to tag someone in a status update from a Facebook app (= from the API): However, it doesn't seem to work for me. It tried it in ...
18
votes
2answers
3k views

Retrieve all comments with FQL by application ID

We use the facebook comment plugin to have comments on our site. To moderate those, we use this tool: https://developers.facebook.com/tools/comments However, we want to build our own tool to ...
13
votes
3answers
13k views

Facebook Apps: Additional permissions

I have a working Facebook app that most users will use just once. Leading into the Facebook workflow, users indicate if they want their wall to be written to or not. Based on that, I either ask for ...
12
votes
2answers
13k views

Get user image from Facebook Graph-API

I want to show the users profile picture in a list view. When I try to call the graph-api from android to retrieve the image, I always get the following error. java.io.IOException: Hostname ...
11
votes
6answers
26k views

Get a list of Friends of a Friend on facebook

I've recently started looking into the Facebook API and am trying to work out how to retrieve the list of friends of another user (in this case the user is someone I'm friends with). So far I've ...
6
votes
3answers
7k views

How to get friends likes via Facebook API

Is this possible to get all my friends likes?? Now, I'm getting this by 2 steps: Getting all my friends list By iterating those list I'm getting all individuals Likes, but it seems very big ...
5
votes
2answers
4k views

Using Open Graph API, can I see when users Add To Playlist or Star tracks in Spotify?

How would I access when a user (and a friend of a user) adds a song to a playlist, or stars a song in Spotify, Rdio etc?
4
votes
1answer
4k views

How to list only online users on facebook with xmpp framework

I have integrated xmpp in my app and able to list all the users in a table view, but I only want to display the online users and then want to implement the feature to send and recieve messages to my ...
14
votes
3answers
10k views

CSRF state token does not match one provided FB PHP SDK 3.1.1 Oauth 2.0

My server logs show a "CSRF state token does not match one provided" error which seems to happen for almost every user. However, the users are created and/or authenticated and I am able to retrieve ...
5
votes
2answers
5k views

How to use Facebook graph API to retrieve fan photos uploaded to wall of fan page?

I am creating an external photo gallery using PHP and the Facebook graph API. It pulls thumbnails as well as the large image from albums on our Facebook Fan Page. Everything works perfect, except ...
1
vote
4answers
2k views

“An error's occurred” when authenticating with Facebook's android sdk

I'm authenticating user's (or trying to) with my android app that I've been working on and all I get from the facebook dialog is that an error has occurred with no details as to what the error is. ...
3
votes
1answer
1k views

How can I find out what Page has installed my Facebook App / which page is loading my app

I have a canvas app (http://apps.facebook.com/myapp) and other pages (businesses, etc) can Add it to their page. Within my app, how can I know which page I'm being called from? I'm using the PHP-SDK
3
votes
3answers
4k views

Creating Facebook Page programmatically through Open Graph API

I am hoping there is a way to create a facebook page using the open graph API. The documentation only shows API calls I can make once the page exists. Currently, I have movie profiles on my site that ...
6
votes
3answers
9k views

Facebook Graph API get all users and their status

I am using the Facebook Graph API and I was wondering if there was anyway to get a list of all the users and their current status in one call? I basically want the same results as ...
17
votes
5answers
22k views

How to get share counts using graph API

I can get the share count of an URL using PHP SDK and using the deprecated rest API, but doesn't found a way to get the share counts of an URL using graph API. Is there any way to find out?
23
votes
3answers
46k views

Using Facebook Graph to simply post a wall message with just javascript

Hey guys, Now I know this question has been asked similarly a lot of times but I'm really struggling here. Its a simple thing I need to do: I would like to post a message onto a users wall saying "I ...

1 2 3 4 5 26