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 am new to facebook programming and trying to read number of likes on certain posts.

"data": [
{
  "likes": {
    "data": [
      {
        "name": "xxx", 
        "id": "10005270697255"
      }
    ], 
    "count": 1
  }, 
  "id": "100005270197255_103639323125074", 
  "created_time": "2013-02-19T17:13:25+0000"
}, 

How could i get number from "count"? :)

share|improve this question

2 Answers

How about data['likes']['count']

share|improve this answer
I got id like this: $idStatus = idx($status, 'id'); How can i use your code? – user2090668 Feb 20 at 10:24
u mean the output you show in question is $id?? – Sankalp Mishra Feb 20 at 10:26
it isnt? :) i am trying to get id and number of likes... i use this sentence: $statusi = idx($facebook->api('/me/posts?fields=likes,id'), 'data', array()); – user2090668 Feb 20 at 10:30
just realized that i am also not going through all the post - guess because of access problem... pfff – user2090668 Feb 20 at 11:51

You don't show the whole data structure, but once you have data, it should be:

data[0].likes.count
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.