facebook-page

App page used to resolve from Facebook search, now it 4oh4's

岁酱吖の 提交于 2019-12-06 07:22:44
I have an existing facebook app. I can search for it from the "search" box on the facebook site. It used to resolve just fine. Now even though I still see the app in search results I get a 4oh4 error when clicking on the app link. Everything else works just fine, the app works, the link to visit app from developer section works. The id's are the same but the facebook search link seems to have slightly different URL. The search I did was for ClubView Plug a URL into the Bookmark URL field: This is a bug logged with Facebook and that is the known workaround. This one is very easy, your app is in

Facebook messenger bot error nonexisting field (messages)

☆樱花仙子☆ 提交于 2019-12-06 06:04:43
I am a new member. I have an error when send message using HTTP Post to "graph.facebook.com/v2.11/me/messages?access_token=MY_PAGE_TOKEN" This is error return: `{"error":{"message":"(#100) Tried accessing nonexisting field (messages) on node type (Page)","type":"OAuthException","code":100,"fbtrace_id":"EB39Xkxnf6O"}}` Despite error, tester and developer still able to receive message. But the FB viewer might not and they not approve my review submission: "We did not receive an automated response when we messaged your Page. Bots should respond to all input from the user within 30 seconds so that

Post a photo to an Album on a Facebook fan page without being the admin,

只愿长相守 提交于 2019-12-06 05:26:42
From my iOS application, i would like to post a photo to a fan page where i am not the admin. I am doing well with that code: NSData* imageData = UIImageJPEGRepresentation(image_, 90); NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"hello", @"message", imageData, @"source", accessToken, @"access_token", nil]; [FBRequestConnection startWithGraphPath:@"{pageID}/photos" parameters:params HTTPMethod:@"POST" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) { DLog(@"error %@",error); DLog(@"result %@",result); }]; But now, i want to

New timeline application tab width and logo

两盒软妹~` 提交于 2019-12-06 04:53:11
问题 It seems the new Timeline for Page will let applications tabs run in a wider canvas. Right now, my tab applications are still running in an iframe of 520px width. Anyone knows if there is a way to change that? Also, the required app image is still 75x75px. I hope Facebook will soon allow us to upload images in the format of the new tabs which seems to be about 110x75px. 回答1: Check your tab settings ( https://developers.facebook.com/apps/<APPID>/summary )for the "Page Tab Width" field. Your

How do I get Facebook page username or facebook page ID from url

你离开我真会死。 提交于 2019-12-06 04:13:22
问题 I've made a website where users can submit their Facebook page and I orginally coded it assuming that they would of set up a vanity URL for their page. E.g. http://www.facebook.com/ myfacebookpage But I forgot that some pages can have urls such as http://www.facebook.com/pages/myfacebookpage/ 54878424154545487 My question is how do I use PHP to grab the part of the url in bold ? Thanks! 回答1: like this: $url='http://www.facebook.com/pages/myfacebookpage/54878424154545487'; // the input $pieces

Facebook app iframe won't attempt to load when logged in as page

安稳与你 提交于 2019-12-06 02:24:53
I have an app that shows up as an iframe on a Page. ( Here's an example. ) If you view the app tab as a Facebook user, whether you have the app installed or not, everything works correctly. If you view the app tab as a Facebook Page that has not installed the app, everything works correctly. If you view the app tab as a Facebook Page that has installed the app, nothing displays. In fact, when sniffing the HTTP headers, it looks like no attempt is ever made to load the app URL . Any idea what needs to happen on the Facebook side of the equation in order to have the tab at least make an attempt

Are Facebook Messenger page-scoped IDs globally unique?

痴心易碎 提交于 2019-12-05 13:21:22
I understand that the same user will have different page-scoped IDs (PSIDs) across different pages. But is it guaranteed that no two users will have the same PSID across different pages? For example, is it possible that user A has PSID 1234 while messaging page X, and user B has the same PSID 1234 when messaging page Y? Technically user A and user B would be differentiable even if they have the same PSID because they are messaging different pages. But can I assume that there will be no overlap on PSIDs across all pages, so that I may use the PSID as a globally unique ID regardless of the

How to upload custom app image (tab_image) for Timeline Page tabs via API?

我与影子孤独终老i 提交于 2019-12-05 12:45:47
Facebook released the new Timeline for Pages today. Apps installed to pages as "tabs" now appear above the timeline with a 111px x 74px size thumbnail "app image". You can customize this on a per-page level (just like the custom tab name) if you navigate the Facebook Page admin interface. You can update the tab's "custom name" via the Open Graph API , but they do not appear to have updated their API docs to show how to upload a custom tab_image (assuming they will). Is it possible now but undocumented? Has anyone figured out how to do this yet? Updated 2016: With the latest Open Graph 2.5 API

Check if page tab app is still installed

核能气质少年 提交于 2019-12-05 05:52:20
What is the best way to check if a tab app is still installed on a specific Fan Page, using the graph api? The only way I can come up with is using, https://graph.facebook.com/page_id/tabs/app_id , and this will return the data for the given tab, if it is installed, but it appears a access_token is required. To use this method, I think, I would need to ask the user for not only the manage_pages permissions but also for the offline_access, then I could store the page_access_token and be able to use it later for sole purpose of checking if the app has been removed? It seems odd that this wouldn

Facebook API: Determine if Facebook Page is published / unpublished

孤街浪徒 提交于 2019-12-05 05:45:05
What is a reliable way to check whether a Facebook Page is published or unpublished using the graph API? I currently do this: http://graph.facebook.com/ {page_id} and check if the return value is "false". If it's false, I conclude that it's unpublished and if it returns a graph object, then conclude that it's published. But I'm noticing now that a lot of published pages return "false" from the above request. Here's an example: this page is published: http://www.facebook.com/AjiRestaurant but these requests return false: http://graph.facebook.com/104433516257517 (using page Id) http://graph