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.
Pagination is the process of dividing information into discrete pages.
0
votes
1answer
41 views
Do the cursors used in pagination have a specific lifespan or timeout?
In the documentation on pagination there is a section about using cursors to check for new content. This implies that you can store the cursor and come back later to see if something new has appeared. ...
0
votes
0answers
51 views
I want to get friends facebook checkins for an app,i tried using graph api but it
I want to get friends facebook checkins for my app,i tried using graph api (/me/friends?checkins) it gives result but it takes too much time,i also tried using /search?type=checkin it gives only two ...
3
votes
1answer
234 views
Facebook Graph API pagination is not giving the excat result?
I am using the graph-api to fetch data for a specific query.
function getFeed($access_token,$until)
{
$result = $this->facebook->api(
'/me/home',
'GET',
array(
...
0
votes
1answer
185 views
Paging in Facebook FQL
I am trying to get all the chat conversations of an user. I get the access token and directly query the facebook tables(no graph api,just plain FQL).FQL Guide
This is the query I am using
select ...
1
vote
1answer
115 views
facebook API photos pagination not returning “previous” link
Referencing to the following article :
http://www.masteringapi.com/tutorials/how-to-create-a-user-photo-albums-browser-using-facebook-graph-api/77/
I am creating a User Photo Albums Browser Using ...
2
votes
1answer
98 views
Limit and offsets are not working for Facebook me/feed connecton
I have found that if Graph Connection me/feed is used with limit and offset then its returning empty json array for most of limit and offset values.
For example:-
me/feed?limit=10&offset=0 is ...
0
votes
2answers
167 views
Facebook Open Graph Friend Array results are limited
I'm retrieving an array of my users' friends' ids using open graph api.
$friends = $facebook->api('/me/friends?limit=2000');
$friendsList = array();
foreach ($friends as ...
0
votes
0answers
53 views
If FB search returns empty data, there's no “Next” link even when there's more data
I understand that FB search removes private search results after doing a search so you can get less than your requested limit, but it looks like if all the results are removed, there's no "Next" link ...
1
vote
1answer
263 views
Facebook Graph API Event Paging not working?
I am trying to access past event via Facebook's Graph API.
I am getting current events just right (the one I attended last month and the one in the future) with
...
0
votes
1answer
515 views
Calling Facebook News feed (me/home) with until parameter, returns limit/2 each consecutive call
Here is a slimmed down version of my code (without the initialization calls). Everything works perfectly, except that every consecutive call I make passing in an until value into FB.api, returns me ...
2
votes
2answers
2k views
Does the /me/friends Facebook open graph API call ever get paginated?
I'm testing my app based on a friend list of about 350 people, and not seeing any pagination on /me/friends/.
What's unclear to me (by testing & documentation) is the following:
At how many ...
6
votes
3answers
1k views
Facebook Open Graph API: weird behavior of parameter limit while getting a paginated user's news feed
I've written a little script in JAVA, that tests the parameter limit with four different values (10, 100, 1000 and 10000) when querying a user's news feed of Facebook using the Open Graph API and the ...
0
votes
1answer
616 views
Facebook Graph API - Paging
I am getting a user's posts with the Facebook API like so:
FB.api('/me/home', function (response) {
});
This returns a paging object, with two values: previous and next.
Later in my app, I want ...
1
vote
0answers
414 views
FQL to retrieve and paginate for all video posts on friends' wall
I have been trying to fetch all video posts from my friends' wall (say 20 at a time)
Below query
SELECT created_time, post_id, actor_id, type, updated_time, attachment FROM stream WHERE ...
1
vote
1answer
884 views
facebook friendlist pagnation with foreach?
I'm retrieving facebook friendlist, but it retrieves like a billion photos (exaggerated). I was wondering how can I add pagination within a foreach loop? Also, would my PHP coding be the best way to ...
0
votes
1answer
850 views
Mobile Facebook Friends List Get All
In mobile the url used to view all friends is http://m.facebook.com/friends/?refid=5. But facebook has pagination and I want to see the list with all my friends. I even tried using parameters like ...
0
votes
2answers
584 views
facebook opengraph api return limitations?
I'm just experimenting with opengraph a bit and I was trying to retrieve all the posts a user has ever made. And I noticed that when do
user_id/statuses?limit=200
it only returns 99 statusses, is ...
1
vote
1answer
873 views
reading and paging through the user's stream (home) using the graph api
I am trying to read a user's stream using the facebook graph api. the call is:
https://graph.facebook.com/me/home?access_token=xxxxx&since=yyyyy
I am getting a response but there are a few ...
0
votes
0answers
301 views
Inbox Paging with Facebook C# SDK
I am using the following FQL query to get ALL messages in ALL threads for the current user(excluding threads that may or may not be blocked cause of friends' app permissions):
SELECT message_id, ...
0
votes
1answer
520 views
pagination for facebook-graph-api
I am using the graph-api to fetch data for a specific query.
I am using the value of "next" field for pagination.
Suppose
The link is ...
3
votes
2answers
1k views
How to retrieve ALL Facebook photos a person is tagged in
I know you can append limit and offset values to the graph.facebook.com/id/photos API call to paginate through photos. But large limits don't seem to work well, photos end up missing. I read here ...
1
vote
1answer
482 views
In Facebook Graph API - how can I know how many albums a facebook user has?
I'm trying to determine if I should show a "next" or "previous" links to the user, in case there are more albums.
When calling /me/albums?limit=5 for example, for some weird reason the pagination ...
0
votes
1answer
1k views
More/Pagination implementation like on Facebook.com
I'm currently working on a site and I would like to barrow the technique from Facebook on how the 'pagination' or 'view more' works. I think I have it sorted out but I'm just asking if this is the ...
6
votes
3answers
7k views
How does paging in facebook javascript API works?
I'm trying to recover the last week posts in my facebook news feed with the javascript sdk.
I'm able to get the first page but then, I don't know how to continue iterating through the other pages. ...
2
votes
3answers
5k views
Facebook Graph API: Getting the total number of posts
I've been using the Facebook Graph API to display user posts. When I get the initial "page" of posts, the resulting data object has a paging property object with a previous and next URL property. I ...
6
votes
3answers
5k views
Search Facebook events and pagination (Graph API)
I am requesting this page to get the events with the keyword "conference": https://graph.facebook.com/search?q=conference&type=event
Works fine.
The problem is the pagination returned:
...

