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 can post on my wall with Graph API.

$facebook->api("/me/feed", "post", $args);

Then, I can change their date manually. Is it possible to change the date of a post or create a new post with a past date through Graph API?

share|improve this question

1 Answer

If you look at the Graph API doc - https://developers.facebook.com/docs/reference/api/ under the Publishing section, it shows the available arguments that cane be used when posting to a wall and they are message, picture, link, name, caption, description, source, place, tags.
But if you are using OG actions, you will be able to publish posts referencing past activities. More info here - https://developers.facebook.com/docs/opengraph/publish-past-actions/

share|improve this answer

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.