Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

i get code this from facebook developers

$this->api('/ USER_ID /likes');

but how i get the list based on it' category using php-sdk. i have checked the Graph Api Explorer but the modifiers only limit,offset,target_id

share|improve this question

1 Answer

I don't think it's possible with the graph api. But you could easily create you own array

$ordered_by_cat = array();
foreach($results['data'] as $result){
     $ordered_by_cat[$result['category'] = $result
}

Given that $results is your json response

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.