My application is posting on wall on behalf of the user with user access_token. Once it is posted I get back the post_id which is persisted in DB. An an application I would like to query the post using the post_id to collect some basic insights like comments and likes. I can't get my app to query the data.
I tried stream table but doesn't return data as an app. I get "GraphMethodException" code:100 I checked privacy settings on post but that doesn't include permission for an app I tried GraphAPI /post_id which returns same error as stream table I tried insights table with post_impressions metric with no luck. I couldn't give the post_id so tried removing the user_id part from post_id(xxxx_yyyy where xxxx is the userid)
What kind of permissions do I need to request user to grant my application stream_read permission?
How do I query insights table with the post_id that I have?
Invalid ParameterRefer : fb-developers.info/tech/fb_dev/faq/general/gen_10.html Show us your code so we get an idea. This should be helpful : developers.facebook.com/docs/reference/api/status You can get the comments and likes, and do a count as well(If you are looking for the count). – Kishor Nov 15 '12 at 9:47