Questions tagged [facebook-rest-api]
57 questions
1
vote
2 answers
fql to get location posts by me or my friends with me tagged
Here is what i'm looking for:
select author_uid, tagged_uids, page_id from location_post where author_uid = me() or ( author_uid in (select uid2 from friend where uid1=me()) and me() in tagged_uids)
When i split the queries they return the…

Raghu
- 2,004
- 1
- 16
- 18
1
vote
1 answer
customize user to user request
Is there a way to customize the user to user request link in the notification the recepient receives in his/her notifications jewel? I'm trying to direct the receipient of the request to a specific competition room upon clicking on the…

Liz Amherst
- 11
- 3
0
votes
1 answer
redirect after adding app to a page
I'm working on an app our customers will install on their page. I try to make the following sequence without success :
get user permissions
let the user choose the page he wants to install the app
add the app to his page with…

ryanguix
- 1
0
votes
1 answer
Will old REST API require OAuth 2 from Oct. 1st.
It's not clear from Facebook's authentication documentation and Dev. Roadmap if the deprecation of some older authorization methods will also include the deprecation of the old REST API authorization method, which is custom.
My application only uses…

Jacob Gorban
- 1,431
- 1
- 9
- 15
0
votes
1 answer
User feed returns only single most recent post
I had my code work fine yesterday, but today I can no longer get the feed from the user that authorized my app.
When calling https://graph.facebook.com/userID/feed?access_token=XXX in the app or browser I get only one item in the feed - the most…

Ilya Sh
- 3
- 1
0
votes
2 answers
Is "credit_balance" whitelisted feature on Facebook?
I've been storming the internet for information on how to obtain "credit_balance" from Facebook user.
To get user credit_balance, I'm using: Facebook Credits - Getting error code 13 when trying to get credit balance
I'm aware of the fact that you…
0
votes
1 answer
Storing FB likes in database
I'm working on picture contest site which have to allow user to vote with facebook like button. At the end of a round, a have to check all picture likes and store it in our database. Well, what's proper way of doing this? How can I use…

Ante
- 8,567
- 17
- 58
- 70
0
votes
2 answers
How do I send an email or message to facebook friends through code
I've been trying read(cut) my way through the jungle of Facebook posts about sending a message or email to my Facebook friends through code.
So far I have found the Facebook REST…

jakob
- 5,979
- 7
- 64
- 103
0
votes
1 answer
How to change keyboard of facebook using rest api in iphone?
I have used Rest API facebook in my code and I want to change the default keyboard of Facebook. How can I change it?

dks1725
- 1,631
- 1
- 20
- 29
0
votes
0 answers
Can't get user access token facebook
I manage a comapny's facebook fanpage (with a lot of posts and comments). To collect posts and comments from my company fanpage, I created an app and an extended page access token and did data collection successfully. After about an hour through…

kevin
- 1,914
- 4
- 25
- 30
0
votes
2 answers
Facebook Ad API PHP : Invalid OAuth access token
I am working on the Facebook Ads API and I am totally new for this. I am getting an error to fetch the Ads account. The error is Invalid OAuth access token. After getting this error I came to google and searched a lot like
First Link Another one…

Manoj Dhiman
- 5,096
- 6
- 29
- 68
0
votes
1 answer
FQL - How to fetch latest photos of all my friends?
I'm trying to fetch latest photos uploaded by all my friends within last 24 hours using Facebook FQL query:
SELECT pid, caption FROM photo WHERE aid IN
( SELECT aid FROM album WHERE owner IN
( SCV list of all my friends Ids )
)
AND…

Tankista
- 1,685
- 17
- 26
0
votes
2 answers
Retrieving comments from "Facebook Comments" social plugin
Assume I have a website with Facebook comments (social plugin) like this.
Is it possible to get the comments from this site using the FQL or "comments.get" method of the REST API (note the responsible FB app is not mine)? It might be possible…

joshis
- 347
- 4
- 9
0
votes
1 answer
Tag photo Graph API / REST API
I'm doing a FB app with the Graph API in Flash. I've got everything working which consists in uploading some images created by the user in the app. The only part that I'm missing is how to tag these photos as with the Graph API it is not possible.…

wannax
- 1
- 1
0
votes
3 answers
FACEBOOK GRAPH/rest api: how to LOGIN my OWN USER to update my STATUS with PHP
I want to update the status of a FAN-PAGE by PHP with the help of the Facebook graph api. google says: doesn't work.
Now I want to update my own user status by PHP. My main problem is how to login my own user to the graph api (with PHP), without…

alex
- 217
- 1
- 3