facebook-fan-page

Simple example to post to a Facebook fan page via PHP?

自古美人都是妖i 提交于 2019-11-26 11:31:46
I've done a lot of searching and I've found outdated tutorials that don't work... I have a site made with PHP and when I submit a particular form in my admin area, I want to publish to my Facebook "fan page" There is no RSS available, so do you have any example to directly post to the Facebook fan page (not user wall) using php sdk? Thank you! nmarti Finally, after a lot of tests, it worked, without the PHP SDK. This is the step by step guide: 1. Get permissions and the page token Go to https://developers.facebook.com/tools/explorer/ and select your app from the first drop down menu, in the

Facebook API: Get fans of / people who like a page

孤人 提交于 2019-11-26 02:55:23
I'd like to get a list of users who like a certain page or a fan of it. The FB API documentation states that you can only get the count of the fans of a certain page using the social graph, but not a list of the fans. A discussion here Retrieve Facebook Fan Names suggests that one could use an FQL query like SELECT user_id FROM like WHERE object_id="YOUR PAGE ID" to get the number of people who liked the page, but for the same page, it gives an empty response "{}". So I was wondering if anyone has an idea if this can be done. s3m3n There is a "way" to get some part of fan list with their

Simple example to post to a Facebook fan page via PHP?

巧了我就是萌 提交于 2019-11-26 02:16:46
问题 I\'ve done a lot of searching and I\'ve found outdated tutorials that don\'t work... I have a site made with PHP and when I submit a particular form in my admin area, I want to publish to my Facebook \"fan page\" There is no RSS available, so do you have any example to directly post to the Facebook fan page (not user wall) using php sdk? Thank you! 回答1: Finally, after a lot of tests, it worked, without the PHP SDK. This is the step by step guide: 1. Get permissions and the page token Go to

Facebook API: Get fans of / people who like a page

筅森魡賤 提交于 2019-11-26 01:51:04
问题 I\'d like to get a list of users who like a certain page or a fan of it. The FB API documentation states that you can only get the count of the fans of a certain page using the social graph, but not a list of the fans. A discussion here Retrieve Facebook Fan Names suggests that one could use an FQL query like SELECT user_id FROM like WHERE object_id=\"YOUR PAGE ID\" to get the number of people who liked the page, but for the same page, it gives an empty response \"{}\". So I was wondering if