Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook open graph: How to change story tense?

I created a custom story for my facebook app and I can make a basic story post using the facebook js sdk like this

FB.api(
   'https://graph.facebook.com/me/my_app_namespace:eat',
   'post',
   {apple: 'apple_url'},
   function(response) {
     alert('finished');
   }
);

However, the resulting post is in the past tense and the object is in the singular. For instance the resulting post is very similar to

John ate an apple

but the goal is to have the resulting post be

John is eating an apple

or

John is eating apples

I have looked through the facebook open graph documentation and I have found no information on how to change the action tenses and make the objects plural or singular. How can I change the resulting post?

like image 881
bab Avatar asked Dec 21 '25 06:12

bab


1 Answers

Just for reference:

If you want to make a facebook story to show up in present tense you should set the expires_in attribute on it.

like image 156
Mike Szyndel Avatar answered Dec 22 '25 19:12

Mike Szyndel