I use spring social facebook to publish a story using:
String id = facebook.openGraphOperations().publishAction("myAc tion", "object",objectURL);
After a successful trigger, i could not find the entry in my facebook activity
however, i am able to retrieve the entry using:
https://graph.facebook.com/[id]?access_token=[myAccessToken]
How do i know if the API is working properly. How do i debug / trace the actions perform.
I am using quickstart as a reference
I also realise that common actions like og.likes is not supported
String id = facebook.openGraphOperations().publishAction("myAc tion", "object",objectURL);
After a successful trigger, i could not find the entry in my facebook activity
however, i am able to retrieve the entry using:
https://graph.facebook.com/[id]?access_token=[myAccessToken]
How do i know if the API is working properly. How do i debug / trace the actions perform.
I am using quickstart as a reference
I also realise that common actions like og.likes is not supported