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.

Sorting is the process of applying some order to a collection of items.

learn more… | top users | synonyms (3)

0
votes
1answer
27 views

php find to array and convert to variable

I have a function that connects to facebok sdk. This function retuns an array posted below. I'd like to find a specific varriable within that array and sub-arrays and store it to MySQL. I need to ...
-4
votes
0answers
24 views

Cannot sort albums [closed]

I cannot sort the albums in the order that I want. Fix this.
1
vote
0answers
77 views

Facebook Open Garph aggregator sorting

I setup object, action, and aggregator. 1) For example, I posted 10 actions for the object with ID = 1. They show up in timeline. 2) Next I posted another 5 actions for the different object with ID = ...
1
vote
1answer
355 views

Order BY 2 fields in FQL

I'm trying to sort friends by 2 criterias those who use my app first and has the most number mutual friends with me. Is there any way to sort by 2 fields in FQL? I've found work around using ...
1
vote
0answers
70 views

Is there a way to query for a 'relevancy sorted' friends list as seen on Facebook.com?

Is it possible to access (or recreate purely using the Facebook APIs- i.e.: Batch) a 'relevancy sorted' friends list (as seen on http://www.facebook.com/me/friends) using the Graph API or FQL? If I ...
0
votes
0answers
44 views

How to easiest sort Application actions by likes?

we want to sort all of our objects created in the app by most likes seems that facebook cannot do this for us, which is really strange since query like this should be cool and most welcomed SELECT ...
0
votes
0answers
64 views

Ajax call to Facebook API returns sorted data

I'm making a request to the Facebook API using the following snippet: $.ajax { url: "https://graph.facebook.com?" type: "GET" dataType: "json" data: ids: id_list success: (profiles) -> ...
0
votes
1answer
130 views

How to sort FB Shares by likes

is possible to sort the fb shares, of a status update for example, by the links of each share? I will send a example: Lets say that I update something in my timeline (or a Fan Page timeline), may ...
0
votes
0answers
146 views

How to use Facebook Batch Upload in PHP SDK sorting photo

I use the batch required to upload 200 photos, but the sequence is wrong, I don't know how to do let sorting according to my upload sequence. then I try to add a parameter in the $req 'depends_on' ...
0
votes
1answer
109 views

sort json facebook data

i'm trying to figure out how to sort the json data provided by a facebook events feed. This is the code I've been using $int_count = 1; $FBpage = ...
0
votes
2answers
455 views

Find User's First Post?

Using the Graph API or FQL, is there a way to efficiently find a user's first post or status? As in, the first one they ever made? The slow way, I assume, would be to paginate through the feed, but ...
0
votes
1answer
190 views

Open Graph API sort order, or simple jquer/javascript sorting

I'm getting a list of friends scores by calling the following: https://graph.facebook.com/<appid>/scores?access_token=' + userToken; It works great, but I would like to sort by highest score ...
0
votes
1answer
33 views

How to sort pages a user admins by number of Likes

So I was looking for a way an administrator can sort facebook pages by "likes" count (for users who have a lot of pages they administrate.) Is it possible? anyone can give me a hint on how to achieve ...
1
vote
2answers
161 views

Dynamically sorting and displaying PHP array

I have an array containing friends list of a user on Facebook. I have to display that list and provide a text field on the top of the list to enter first letter of any of his/her friends name. When ...
1
vote
0answers
266 views

How to sort from for each in PHP

From an array I start for each entry a function with a argument from the array (its friends from facebook). The function returns either 0 or a number bigger than 0. So at the moment, it justs displays ...
0
votes
1answer
201 views

Integration of facebook opengraph to wordpress?

First let me explain my predicament, I am currently developing a wordpress site which implements facebook apps for my post likes/comments. and one function of the site is that there is a tab/page ...
0
votes
2answers
161 views

JSON get highest to lowest value data multi array

Hello whew im stack in this problem.... arranging value from highest to lowest in json data values pastebin - http://pastebin.com/yjFUfdJW for the codes whew i just want to sort the likes highest to ...
0
votes
4answers
534 views

Sort an NSDictionary (which contains my Facebook friends list)

Using the Graph Facebook API with this code [facebook requestWithGraphPath:@"me/friends" andDelegate:self]; Now I have an NSDictionary which is like this: {data = ( { id = ...
0
votes
2answers
2k views

Sorting by birthday date my friend list in Facebook API?

I'm creating my own application to show forthcoming friend's birthday. I have a permission to get this dates from facebook and i'm displaying all my friends with their date of birth on my site. My ...
0
votes
2answers
747 views

PHP / JSON: Sort two different timestamp formats in one array

I have a merged array from the JSON output of a Facebook and Twitter stream and I want to sort those two into one but they offer two different timestamps: Facebook: [created_time] => 1299839651 ...