Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create a Facebook fan page for a website in an automated way?

We are working on a CMS application development. In that case, we need to integrate a feature, that is enabled for user to create a facebook fan page in an automated way for their product/service. But we realized that it's not allowed by any of facebook developer APIs.

So, What we just need is to automation of fan page creation part in a programmatic way. Is that possible to do??

Thanks!

like image 588
chamindaindika Avatar asked Nov 04 '22 13:11

chamindaindika


1 Answers

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 app to generate a Product/Service Page at www.facebook.com/SomeCompany for users to Like. Your alternatives are:

1) Use your app to generate Open Graph tags and Like buttons for the company's web site (external to Facebook). 2) Instruct the client on how to create a page manually by visiting Facebook.com while logged into their Facebook account. 3) Request the manage_pages permission from your client in your app, and use the Marketing API to edit the page after the client has created it. You can edit most fields on the page (even things like the profile picture) once the page exists. For more information, see here: https://developers.facebook.com/docs/reference/api/page/

like image 64
Vin St. John Avatar answered Nov 09 '22 10:11

Vin St. John