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 created an application on facebook with some Open Graph actions. My all actions are approved. Now I have a problem with one of may action. My post url for this action is in format My-App-Namespace:ActionName?ObjectName=MyURL/a/String-Value/_bn/Integer-Value

But when it is posted on FB, one of my parameter "_bn/Integer-Value" is not posted. The post on FB is My-App-Namespace:Action-Name?Object-Name=My-URL/a/String-Value

Is there something I do wrong?

Thanks in advance.

share|improve this question

1 Answer

Check that your code which is writing the meta tags for the object isn't forgetting to include the same parameters in the og:url value - this is by far the most likely cause of this problem

share|improve this answer
Is parameter order is important. – Ravi Mehrotra Jun 22 '12 at 14:40
No, provided whatever's in your og:url is a valid URL which returns the same tags you should be OK – Igy Jun 22 '12 at 14:45
I am using the FB PHP Library to post the action. I check my URL using Graph API Explorer and It works fine. But when I post through FB Library method FB->api(URL, 'post', array()); and check the posted action, one parameter _bn is missed. I also check my posted URL it's correct. – Ravi Mehrotra Jun 23 '12 at 4: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.