Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
The inbox tag has no wiki summary.
0
votes
0answers
27 views
Sending a message - read if seen programmatically
Currently we run a booking service and we would like to give our members the option to install our app (soon to be app) and recieve booking information to facebook.
We already offer them booking ...
0
votes
1answer
121 views
Facebook FQL query to get user's sent messages since a timestamp
I'm not too familiar with Facebook FQL. I'm looking for a way to see what users have received my message. I know I need to ask for extended permissions read_mailbox
For instance I would like to see ...
0
votes
1answer
23 views
How to get the original message's message field through FbGraph /me/inbox?
I am trying to get the original message content from the /me/inbox through the API. I have authorized the read_inbox permission and got a bunch of message objects back. However, each of the message ...
0
votes
0answers
45 views
Facebook conversations still only for developers?
is Facebook inbox reading still limited to developers? I get an error "You must be a developer of the application" when trying to read with another user and see old posts saying it would be released ...
0
votes
2answers
255 views
Facebook API list inbox using php paging
I want list of facebook messages through Facebook API-PHP.
I wrote a code with php, ı wrote the code;
// Facebook App Connection
$facebook = new Facebook(array(
'appId' => ...
0
votes
0answers
414 views
How to retrieve facebook inbox using php sdk
Ok so here is the thing, I have been searching all over facebook docs and Googling all day long without any functional result.
My goal is to create an application that lets me retrieve and send ...
0
votes
0answers
118 views
Emulate facebook style message UI
I would like to emulate the facebook UI for their messaging/inbox/sent. I am referring to the messages users send each other and not posts.
At the moment I have separate inbox and sent box pages. I ...
0
votes
0answers
40 views
Same data is being recieved again and again while following 'paging' facebook php sdk 3
Using php sdk 3, I am trying to follow the links in the paging array which as something like this :
...
0
votes
0answers
125 views
Getting inbox and then following paging facebook php sdk 3
After getting the inbox using
$ib=$facebook->api('/me/inbox',array('access_token'=>$at));
I am trying to get the next link(from the paging array) using this:
$nxtLink=$ib['paging']['next'];
...
0
votes
0answers
152 views
Unable to retrieve complete inbox using php sdk 3 on HEROKU
I am using this code to retrieve users inbox:
$inbox=$facebook->api('/me/inbox',array('access_token'=>$valid_access_token,'limit'=>10000));
This works fine and I am able to get all the ...
1
vote
0answers
317 views
Facebook Graph API /inbox endpoint returning incomplete response
I have built a desktop application that makes use of the FB graph api enpoint /me/inbox. (also using the Facebook C# SDK 5.4.1)
As of May 31st I have noticed that the responses from this FB API are ...
3
votes
2answers
1k views
How to whitelist Facebook app to send private inbox message by graph api
There have many people asking around how to send private inbox message by graph api, i search for long time, the answer is no. the reason is "App must be on whitelist"
Alternate solution is send by ...
2
votes
1answer
3k views
How to read inbox of Facebook pages using Graph API
Hi I'm developing management system for Facebook pages.
All Facebook pages are changed to sytle of timeline by the end of March, they will come to receive message from users.
So I want to add to read ...
-1
votes
2answers
978 views
Is there a way to get messages from specific user
Is it possible to get messages from specific user?
If I would like to get all messages where recipients are myself and x
I didn't find a way to create that kind of query, so is it possible?
0
votes
1answer
1k views
Can't get more than 50 messages through Graph API
Running
FB.api('/me/inbox', {limit:800}, function(response){ console.log(response)});
logs
data: Array[50]
summary: Object
to the console, clearly only 50 messages. Setting the limit to a less ...
0
votes
1answer
735 views
Getting Messages from Inbox
I have a question about the Graph API.
I use Javascript for the API and make a little test website ,where you can log in ,look for new messages and write a new status.
My problem is that I can't get ...
-3
votes
2answers
951 views
Can an app send Inbox message to its users?
If so,
How can it be done?
Do you maybe know the Facebook policy about sending inbox messages?
0
votes
2answers
277 views
how to delete a message
I try to delete a message from my inbox.
But i get 100 invailid parameter exception
I use csharp sdk
FacebookWebClient fbw = new FacebookWebClient(accesstoken);
fbw.Delete("/userid_messageid");
...
0
votes
1answer
2k views
Facebook Graph API return only one page of Inbox?
I tried accessing the facebook inbox using the graph API's https://graph.facebook.com/me/inbox?limit=0&access_token=<extended_access_token>
This returns few recent messages of the inbox ...
1
vote
0answers
343 views
Graph api /inbox has missing data
I have an application that goes and gets a users messages from their facebook account, but I've hit an error.
The user in question has a thread between him and me in his inbox, however it doesn't ...
5
votes
1answer
328 views
Error: “Calls to mailbox_fql have exceeded the rate of 300 calls per 600 seconds”
I receive Graph API error #613 (message: "Calls to mailbox_fql have exceeded the rate of 300 calls per 600 seconds", type:OAuthException) when testing my app. It's a desktop app, and the only copy is ...
-2
votes
1answer
442 views
is there any way of facebook locating who set an email and from what device? [closed]
I am in need of some help on this question and dont know if this is the right place?
I need an answer to a question that has three parts to it.
Can Facebook track where a message was sent from ...
2
votes
3answers
2k views
posting reply to inbox message?
I'm trying to post a reply to an inbox message by sending a POST request to /message_id/comments. Is this the correct way to send a reply to an inbox message ?
I'm getting the following error:
...
0
votes
1answer
318 views
How to access inbox of facebook from app in iPhone?
I want to access inbox of my facebook from iPhone application.
I have implemented Graph API.
How to do that?