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 create a new action type ler (translation for 'read' in my language) and a object called reportagem (similar for built-in object 'news').

i tried this at graph api explorer:

me/friends/reportagem.lerem

according to the configuration of my action type and object, that should be the correct way to find my friends activities in my app.

thanks in advance.

share|improve this question
just for information, my app is not submitted for the app center. i realize now that this could be the problem. none of my custom action types and object is validated for facebook yet. but... i couldn't retrieve the activities of the others developers using that url in open graph. – Diêgo Martins May 24 '12 at 6:32

1 Answer

up vote 0 down vote accepted

If you want to see your Friend's activity for a given action, you must query the Graph API using the Action ID, not the namespace.action method.

Example, my Action ID is: 1234567890

If I want to read the actions of my friends for the same action, call the Graph API as follows:

GET https://graph.facebook.com/friend.name/1234567890

If you have permission, the above call will list the friend's actions from the App.

You can get the Action ID from the Open Graph section from the App Settings page. Check the URL (it will be something like):

https://developers.facebook.com/apps/{app_id}/opengraph/action_type/{action_id}

share|improve this answer
what permission should i have for read this informations? friends_activities? – Diêgo Martins May 27 '12 at 16:01
You will need to ask for user_actions:APP_NAMESPACE and friends_actions:APP_NAMESPACE. If you are using built-in actions, you can also ask for friends_actions:music, friends_actions:news etc. – Niraj Shah May 28 '12 at 10:02

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.