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.

Is it possible to update an object property of a published action? I tried POSTing to:

https://graph.facebook.com/ACTION_ID?OBJECT_PROPERTY=OBJECT_URL
  &access_token=VALID_ACCESS_TOKEN

I got true as a response, as you do.

I can update first-level properties such as expires_in, just not connected objects.

share|improve this question

1 Answer

No, you cannot modify the object properties in this way.

You can modify action properties in this method, but if you want to update the object, you need to change the OG tags on that object's URL, and either wait 48 hrs for FB's cache to expire, or force a rescrape of the OG object properties by using the debug tool at http://developers.facebook.com/tools/debug

or via the API by POSTing to

https://graph.facebook.com/id={object-id or object-url}&scrape=true
share|improve this answer
Thank you, but that's not what I asked. I don't want to change the object, I want to associate a NEW object to the action. – Júlio Santos Nov 2 '11 at 15:43
Ahh, ok, no, that's also not possible. You have to delete this action and post a new one against the correct object. – Simon Cross Nov 4 '11 at 6:21

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.