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'm using the FB PHP SDK to get info on a post in a page I manage. So far I can get:

$result = $facebook->api("/123xx");
$result = $facebook->api("/123xx/likes");
$result = $facebook->api("/123xx/comments");
$result = $facebook->api("/123xx/insights");

This gives me a lot of info, but I'm missing details about 'shares'. All I get is

[shares] => Array
    (
        [count] => 13
    )

but no user ids or comments associated with those shares. Is there a way to pull that info with the SDK (or FQL)?

Regarding permissions, my script is asking for 'scope' => 'manage_pages,read_insights' Do I need another param to request this info?

Thanks for any assistance

share|improve this question
I guess you'll have to content yourself with that. – Stéphane Bruckert Dec 16 '12 at 23:05
In my (limited) experience with the FB API, this is the first piece of data that I find available through their own web front-end, but not through the API. – Henry Dec 17 '12 at 17:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.