facebook-page

Facebook Messenger App Invalid Scope - permission: pages_messaging_subscriptions

醉酒当歌 提交于 2019-12-01 07:15:41
问题 I'm attempting to connect a Facebook Messenger App to one of my pages.. I've connected Facebook Messenger Apps to pages before. But this is the first time I've received this error... What gives? 回答1: This is a bug and we are currently working on it. In the meantime, please use our beta tier or generate the page access token through our API. To use the beta tier, you can access the following: https://developers.beta.facebook.com/apps/89000000000000/messenger/ 回答2: we got same error and here is

Can you gate and target a page post through the facebook graph api?

↘锁芯ラ 提交于 2019-12-01 05:54:22
Enabling post privacy gating in the Page's privacy settings allows creating of posts with separate Gating and Targeting. Enable: Post: Now I have been able to get news feed targeting to work through the api by specifying the param feed_targeting when as specified in the docs . However there is only one mention of Gating in the docs: Gating vs. Targeting Gating a post is restricted to only language and country currently. This is different from news feed targeting because a gated post to a language or country will not show up to a user outside of the gating criteria. Using targeting, the post

OAuthException “(#210) Subject must be a page.”

那年仲夏 提交于 2019-12-01 03:42:23
I Keep getting OAuthException (#210) Subject must be a page. error even if I am using the Page Access Token and not the App Access Token . I am using the following: Latest JavaScript SDK from facebook (//connect.facebook.net/en_US/all.js ) Calling the /{PAGE_ID}/tabs?app_id={APP_ID}&method=POST&access_token={PAGE_ACCESS_TOKEN} using the FB.api method once the user is logged in. My Application is not FBML but a Canvas / iFrame App. What am i doing wrong? I have researched the web including the Stackoverflow and other facebook forums but still no answer on this. OAuth is Enabled for my

Can you gate and target a page post through the facebook graph api?

假装没事ソ 提交于 2019-12-01 03:38:21
问题 Enabling post privacy gating in the Page's privacy settings allows creating of posts with separate Gating and Targeting. Enable: Post: Now I have been able to get news feed targeting to work through the api by specifying the param feed_targeting when as specified in the docs. However there is only one mention of Gating in the docs: Gating vs. Targeting Gating a post is restricted to only language and country currently. This is different from news feed targeting because a gated post to a

Facebook Like button for one facebook page of an app from it's own ios app

霸气de小男生 提交于 2019-12-01 01:16:05
I am looking for Like Button to be shown in my ios native app, users of that app have already connected to app via facebook account. there are several questions related to Facebook Like Button on stackoverflow but those are not specific to authorized single facebook page of the app. According to official doc of facebook, facebook pages can not be liked via built-in action o open graph api. But want only one official facebook page of that app to be liked by user when he hits like button. i don't want user to navigate away from the app or login again in web view to like facebook page. is it

OAuthException “(#210) Subject must be a page.”

空扰寡人 提交于 2019-12-01 01:09:51
问题 I Keep getting OAuthException (#210) Subject must be a page. error even if I am using the Page Access Token and not the App Access Token . I am using the following: Latest JavaScript SDK from facebook (//connect.facebook.net/en_US/all.js) Calling the /{PAGE_ID}/tabs?app_id={APP_ID}&method=POST&access_token={PAGE_ACCESS_TOKEN} using the FB.api method once the user is logged in. My Application is not FBML but a Canvas / iFrame App. What am i doing wrong? I have researched the web including the

Facebook PHP SDK 3.0 - How to get my page wall posts at any time?

痴心易碎 提交于 2019-11-30 00:22:28
问题 I have been trying to read the news feed from a page that I have using an app that I'm coding. Now I have had some issues trying to do this using the PHP SDK 3.0. I am able to get the page information, but this is something that is publicly available any way. My question is how do I get (read) the page wall posts? I'm assuming I have to grant permissions to my app to post to page, but how do I do this? currently this is the code that I have $appId = 'XXXXXXXXXXXXXXXXXX'; $secret =

Get all photos of a page using Facebook API

家住魔仙堡 提交于 2019-11-29 19:39:43
I am new to Facebook API but I have to get all photos from a Facebook page. I managed to get a graph api query that returns all pictures of only the first ever created album on the page which is the profile picture album. For example: https://graph.facebook.com/227843870675663/photos But I need to do the same for all other existing albums in the page. Any pointers are really appreciated. try this and let me know how it goes for you, I've successfully pulled all photos. Ensure that you are an Admin of the Facebook Page. go to : http://developers.facebook.com/tools/explorer In the API Navigator,

How to embed a Facebook page's feed into my website

寵の児 提交于 2019-11-28 16:28:38
I am working with a group to help promote a charity event. The page I would like to embed is NOT my Facebook profile, but a Facebook page someone has created. I would like to show that news feed in my webpage. If I need to get info/access from this page, please let me know. If someone else has a working example, please let me know. I have been using jsfiddle.net to draw it up. Here's the page: http://www.facebook.com/pages/Chefs-Classic-Knock-OUT-Bout/225835004169328 DMCS Ahhh, that's super simple, no programming required. See: https://developers.facebook.com/docs/plugins/page-plugin You'll

Facebook: get list of pages that a user is admin of

孤街醉人 提交于 2019-11-28 15:14:42
I'm using the graph api. I have a logged in user, and want to get back a list of page ids of all the pages that the user is an admin of. Is there a way of doing this? The docs are pretty bad - and circular. Avi C Its simple with Graph API. Steps: Get the manage_pages permission from the user (extended permissions). Call the Graph API - https://graph.facebook.com/me/accounts You can test this procedure in the graph explorer -> Just click on 'Get Access Token' button-> under 'Extended permission' check 'manage_pages' & submit it. It will give you the admin-page-details JSON. EoghanM I solved it