Is it possible to LIT a Facebook page through the API?

Is it possible to LIT a Facebook page through the Open Graph API?

Maybe POST for "http://graph.facebook.com/# {FB_PAGE_ID} / likes ???

This is the only thing I could find in the API about creating LIKE:

/ POST_ID / like how this message is none

+6
facebook facebook-graph-api facebook-page
source share
2 answers

Actually, this is impossible. You do not like pages. Check out this: β€œHow to” page using the Facebook API. I had to use a website to do as a page.

The error I always got is something like a whitelist of permissions. It seems that this specific feature is only available for certain applications.

At the top of my head, I think you can get an edge creation notification with javascrip sdk, which you can use as a callback to add the fb page

+4
source share

You're right. You need to get a unique identifier for the page / photo / message / etc. you want, then do a POST request https://graph.facebook.com/<IDENTIFIER>/likes .

Check out this Facebook Developer Documentation page in the "Publishing" subheading.

-one
source share

All Articles