How to create a Facebook fan page for a website automatically?

We are working on the development of CMS applications. In this case, we need to integrate a function that allows the user to create a facebook fan page in an automatic way for their product / service. But we realized that this is not allowed by any of the facebook APIs.

So, we just need to automate the process of creating a fan file page programmatically. Can this be done?

Thanks!

+5
source share
1 answer

You cannot create a new Facebook page via the API - for example, if your client had a company called SomeCompany, they could not use your application to create a Product / Service page at www.facebook.com/SomeCompany for users to Like. Your alternatives:

1) Use your application to create Open Graph tags and Like buttons for a company website (outside of Facebook). 2) Challenge the customer how to create the page manually by visiting Facebook.com while logging into their Facebook account. 3) Request the manage_pages permission from your client in your application and use the Marketing API to edit the page after the client has created it. You can edit most of the fields on the page (even things like the profile picture) as soon as the page exists. For more information see here https://developers.facebook.com/docs/reference/api/page/

+2
source

Source: https://habr.com/ru/post/958466/


All Articles