facebook-page

Embed Facebook fan page into view in Android app

丶灬走出姿态 提交于 2019-12-05 02:14:39
问题 My Android app consists of a simple tablayout (3 tabs). Let's say the user chooses tab #2. Now I would like to show the user a specific fan page, just the recent posts/updates. If it can be embedded directly into the view below the tab, that'd be best (no popup/dialog). I know that if the user should have the opportunity to 'like'/comment on anything, the app needs to be authorized. I have been able to get through that by using the guides on the Facebook API site. But I just don't know how to

How to post a comment on Facebook Page as User, not as Page

孤街醉人 提交于 2019-12-04 20:12:23
I want to post a comment on Facebook Page as User. The user is admin of the facebook page. I tried that my app requests the following URL with the user's access token. https://graph.facebook.com/[POST_ID]/comments But the comment was posted as Page account. I was able to post on Facebook Page as User. My app requests the following URL with the user's access token. https://graph.facebook.com/[PAGE_ID]/feed It's successful. With the pages's token, the post was successfully posted as Page account. But comment and like can't be posted as User. Is it a bug of graph API? Please help me. If you post

Post status update to Facebook page (Fan site)

て烟熏妆下的殇ゞ 提交于 2019-12-04 13:00:50
问题 I've seen all the posts here on stackoverflow about posting status updates to a page's wall (not a user's wall); but all appear to be out of date as none of them address the issue with the new Open Stream API. All the research I've done on Google leads me to the same end: Out of date tutorials that end up saying that the current implementation isn't perfect but "hopefully when the Open Stream API is released, it'll be better." Well, Open Stream is here. Any ideas how to leverage it and post a

Facebook Page Post Api?

喜欢而已 提交于 2019-12-04 09:49:53
问题 I'm administrator of a page on facebook account. How do I post this page to api ? And I, how the code will get a access_token ? 回答1: Follow this steps to make: Take manage_pages permissions Get Page Access_token from https://graph.facebook.com/me/accounts?access_token=<ACCESS_TOKEN> Post your message on page using: https://graph.facebook.com/<Page_ID>/feed?access_token=<PAGE_ACCESS_TOKEN_TAKEN_FROM_STEP2>&message=uuuuhhhuuu... Open your page and check that... :) 来源: https://stackoverflow.com

Facebook test accounts with pages

人走茶凉 提交于 2019-12-04 09:16:48
I'm creating a system which involves these steps: 1. Facebook user logs in with Facebook login (manage_pages scope) 2. One of user's Facebook page's access_token is being collected 3. Page's access token is then extended and stored in database for further use The problem is, that I need to test it and when it comes to Facebook's "test-users", they just can't create a page. I created regular account for this purpose and added it as a Tester in Roles. But as I know it violates rules of Facebook and it's getting annoying as they trying to ban that account (and eventually will). Any ideas? Thanks!

Facebook page feed doesn't work with php file_get_contents()

对着背影说爱祢 提交于 2019-12-04 08:56:32
When I go to this url in by browser, it shows me the json feed i expect: https://www.facebook.com/feeds/page.php?format=json&id=237173582992285 When in PHP I do a <?php print_r(file_get_contents('https://www.facebook.com/feeds/page.php?format=json&id=237173582992285')); ?> I get an html page saying my browser is not supported by facebook and that I should upgrade. How do I make the file_get_contents return the json feed I'm expecting? Additional Notes I also tried from bash wget https://www.facebook.com/feeds/page.php?format=json&id=237173582992285 and the file I downloaded also has html

Facebook Page Plugin is not working - only for one site

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-04 07:34:05
问题 I have integrated the page plugin in my directory. ruhrlink.de info.php?schluessel=150991 dont work, others do. When I enter the web adress manually in the developers site -> Page plugin it dont works there, too. https://www.facebook.com/Geschirr-Service-Ch-Dittrich-607545982758149/ What is so special with this adress? 回答1: The page has some sort of access restriction set. The page plugin only works for public pages without any restrictions. https://developers.facebook.com/docs/plugins/page

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

爷,独闯天下 提交于 2019-12-03 23:09:17
问题 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

Real time update for fans page [closed]

南笙酒味 提交于 2019-12-03 21:55:19
Is that possible to get realtime update for specific fan page? I can get from user as long as it is allowed my apps. But how about fans? Can send me some related documentation. If cannot, any optional I can use? Rafa You need to create a Page and an App. Then the Page adds that App as a tab. Then you subscribe to Realtime-Updates for pages (instead of user) to get them. To create an App: see FB documentation To create a page: www.facebook.com/pages/create.php To add an App as a tab to a Page: www.facebook.com/add.php?api_key=YOUR_APP_ID&pages=1&page=YOUR_PAGE_ID To subscribe to an RTU for a

how to post facebook user wall/ page status by a single user only no app install for other users

蓝咒 提交于 2019-12-03 21:34:22
问题 I am working on a site and i need to post page links from that site to a special user wall or page if something is published on it which means i only need one user to post that question. the problem which i am facing is access token since i am not trying to show facebook login page in front of website traffic. its not like sharing on user wall we are basically trying to post status on a page automatically so any help for this problem will be appreciated. i am using the following code which