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 have created an facebook app, took built-in action (read) and object (article), also back at my web site properly inserted meta og: tags, only thing left to do is to publish at leaste one action to my timeline and submit my action, but every time I try "https://graph.facebook.com/me/namespace:read?article=correctURL&access_token="access token copied from the "Get code" dialog at Open graph settings", and it returns me this message

{

"error": {

"message": "Unknown path components: /appnamespace:read",

"type": "OAuthException",

"code": 2500

}

}

Is this a facebook bug at the moment, or am I just doing something wrong here? Is there any precise way to deal with this?

share|improve this question
if it's a built-in action i don't think you need the appnamespace: part, do you? – Igy Mar 16 '12 at 13:57

1 Answer

According with the "Get code" dialog at Open graph settings, the uri should be

https://graph.facebook.com/me/news.reads?article="...."&access_token="..."

The namespace should be used only with custom actions.

share|improve this answer
I appended access_token to the url but this doesn't works. – user507410 Nov 5 '12 at 16:04
Did you leave out the namespace? – CBroe Nov 5 '12 at 16:14

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.