facebook-wall

rendering facebook wall in an iframe tab- fb:wall replacement and other options

断了今生、忘了曾经 提交于 2019-12-12 07:02:51
问题 I am trying to build a Facebook app that generates a tab that includes a page's wall complete with "post to wall" dialog below some content. So far the only app that I know that does that is Bandpage (for example http://www.facebook.com/beyonce ). It turns down that rendering a wall this way in an iframe is not trivial. Here are some of the approaches I've researched: Using curl to scrape a wall: not only is this an ugly solution, but Facebook protects against that. Using Social Plugins (

posting on friends facebook wall using Iphone application

江枫思渺然 提交于 2019-12-12 06:49:21
问题 I want to make an iPhone application through which users can post on their friends wall, i know how to post on my own wall but can't post on friends wall. What do I need to do to get the desired result for Facebook? 回答1: first time get friend get friend list [_facebook requestWithGraphPath:@"me/friends" andDelegate:self]; then select friend and post his/her wall [_facebook requestWithGraphPath:@"frined_ID/feed" andParams:params andHttpMethod:@"POST" andDelegate:self]; 来源: https:/

android.os.NetworkOnMainThreadException in facebook wall post

爱⌒轻易说出口 提交于 2019-12-12 00:32:54
问题 I'm using Android facebook SDK for post on facebook wall.I have used following code for wall post but every time through exception android.os.NetworkOnMainThreadException public void postToWall(String message) { Bundle parameters = new Bundle(); parameters.putString("message", message); parameters.putString("description", "topic share"); try { facebook.request("me");//Error here String response = facebook.request("me/feed", parameters, "POST"); Log.d("Tests", "got response: " + response); if

Facebook Open Graph Feed Not Returning All My Wall Posts From Me

痞子三分冷 提交于 2019-12-11 12:15:33
问题 When I use the open graph API to get my own facebook news feed (my wall), everything looks right for the most recent 3 months, but prior to that, I no longer see my own posts (but still see posts of other users on my wall). I'm using a version of this link (with a working access token): https://graph.facebook.com/me/feed??access_token=putvalidaccesstokenhere&limit=100 as documented on this page: http://developers.facebook.com/docs/api And I notice that posts from me (i.e. status updates,

Reading Facebook wall returns an empty array

假装没事ソ 提交于 2019-12-11 10:29:08
问题 I am trying to read a user's wall, not news feeds, with PHP, and I always get an empty array from this: $api_call = array( 'access_token'=>$facebook->getAccessToken() ); try{ $wall= $facebook->api("$uid/feed/","get",$api_call); } catch (Exception $e){} Any idea what is wrong here? 回答1: You need to have the read_stream extended permission if you want to see posts other than those with visibility set to 'Public' 来源: https://stackoverflow.com/questions/7634587/reading-facebook-wall-returns-an

Create a Wall like Instagram or FB [closed]

爷,独闯天下 提交于 2019-12-11 08:56:08
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 years ago . I just want to create a wall in my app just like in Instagram and Facebook.And i have no such idea to do this. I am in a search for basic idea how to create a simple wall in my Android app.Can any one plz provide a tutorial or any concept of doing this(wall)... 回答1: You want to

html in facebook wall posts with graph api?

不想你离开。 提交于 2019-12-11 07:37:24
问题 Does anyone know if I can create wall posts with html content using facebook's graph api? And if so, where I could find some documentation/examples? I don't see anything useful here: http://developers.facebook.com/docs/reference/api/post/ It would appear that I can do this using fbml, but it also appears that they're trying to phase out fbml... 回答1: The only option for customizing wall posts are an embedded image or video. You can't do HTML in the body so things like bold or italized texts

publish_stream message visibility to everyone

不羁岁月 提交于 2019-12-11 00:44:16
问题 I use Facebook PHP API to publish to profile's news feed: $this->facebook->api('/me/feed', 'POST', array( 'message' => $msg, 'link' => 'http://'.$_SERVER['SERVER_NAME'], 'privacy' => array('value' => 'EVERYONE') )); but this message is visible only to friends. I want it to be publicly visible to everyone! Even non-friends. How to do this ? 回答1: You, for security reasons, cannot override a user's choice on how your app posts messages. The best you can do is to change the default visibility

Post interactive HTML content to user wall

三世轮回 提交于 2019-12-10 10:59:37
问题 Can I post interactive HTML content (such as a Form with a couple of options - Yes/No) to a user's wall on Facebook? Also, I may want to POST something back to my own website when the user clicks, without the user having to navigate away from Facebook. 回答1: No; the post only allows text (and makes thumbnails from links automatically). On the other hand, you could make a Facebook app which allows various interactions beyond "follow this link". 来源: https://stackoverflow.com/questions/8507289

Adding content to Facebook feed dialog from Facebook SDK for Android

有些话、适合烂在心里 提交于 2019-12-09 17:06:55
问题 In my android app, I want users to "share" my app in their wall, so I want them to post a predefined content status on their wall. How can I customize the wall status? (I want to add my app icon and some flare text). 回答1: Download the Facebook SDK and import it in your project. Then use the following code to Authorize: public void sendtoFacebook(){ facebookClient = new Facebook("<Your_APP_ID"); facebookClient.authorize(<Current_class>.this, new AuthorizeListener()); } Now you have to add the