Android - Can Android app make a like facebook post action? -
i'm researching facebook sdk.
i have googled around , found tutorial button pages , haven't seen tutorial button posts. facebook sdk 4.+ allow make action post?
if does, can guys show me example please?
thanks guys!
it's written in documentation:
note: of nov 17, 2016 changed behavior of publishing likes , support action page access tokens.
https://developers.facebook.com/docs/graph-api/reference/v2.8/object/likes
/* make api call */ new graphrequest( accesstoken.getcurrentaccesstoken(), "/{object-id}/likes", null, httpmethod.delete, new graphrequest.callback() { public void oncompleted(graphresponse response) { /* handle result */ } } ).executeasync();
Comments
Post a Comment