facebook-wall

facebook post friends wall [closed]

对着背影说爱祢 提交于 2019-12-08 14:07:29
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 years ago . is there any way to send data to users' wall or newsfeed from application(not from another user) who granted the application 回答1: No. That would allow spam to run rampant throughout Facebook. Perhaps you want advertising instead: https://www.facebook.com/advertising/ 来源: https://stackoverflow.com/questions

Trying to post directly to an application's wall

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-08 08:20:05
问题 I'm trying to post directly to an application's wall without linking it to my account. I keep getting a "(OAuthException) (#200) The user has not granted the application the permission to automatically publish feed stories". This is from a winform application. var oAuthClient = new FacebookOAuthClient(); oAuthClient.AppId = "APP_ID"; oAuthClient.AppSecret = "APP_SECRET"; dynamic token = oAuthClient.GetApplicationAccessToken(); var appToken = token.access_token; FacebookClient fbClient = new

Read Wall of a Facebook Page by using the Graph API - possible?

自古美人都是妖i 提交于 2019-12-08 06:56:35
问题 I know we can see the USER WALL by retrieving a token and all... no problem. However, I have this case in hands, that the request is to display the WALL of a facebook PAGE of a given user. Does anyone knows if this can be done by using the Graph API? 回答1: Now for FACEBOOK PAGE, it is just the same graphAPI call as for friends wall...just replace the User id to page id, as in the following url https://graph.facebook.com/40796308305/feed?access_token=2227470867|2.oYiXeutFctg5rAweCFSIPw__.3600

Facebook : Like and Comment Functionality against Wall Post

江枫思渺然 提交于 2019-12-08 06:15:25
问题 I am displaying news feed on some other website say www.xyz.com using graph api. I have queries about below problems. I would like to give "Like" functionality for each news feed post. W would like to give "Comment" functionality for each news feed post. Can someone assist me how to solve this problem using either graph api or javascript sdk? 回答1: I would like to give "Like" functionality for each news feed post. This isn't possible, it must be natively within Facebook's site at facebook.com.

is it possible to get the public facebook wall feeds when not logged in?

六月ゝ 毕业季﹏ 提交于 2019-12-07 19:23:41
问题 I'm accually asking is it possible to get public wall feeds without auth token? If I'm not logged in to facebook, I can still see the public posts ,this is a good example : http://www.facebook.com/adele I'm using facebook graph API like this: uri ="https://graph.facebook.com/" + this.getString(R.string.wall_id) + "/feed?access_token="+Utility.mFacebook.getAccessToken(); JSONObject json = GetJSON.fromURL(uri); If I'm connected to FB I'm successfully get the feeds. Do I need to ask for a new

Read Wall of a Facebook Page by using the Graph API - possible?

百般思念 提交于 2019-12-06 14:55:36
I know we can see the USER WALL by retrieving a token and all... no problem. However, I have this case in hands, that the request is to display the WALL of a facebook PAGE of a given user. Does anyone knows if this can be done by using the Graph API? Now for FACEBOOK PAGE, it is just the same graphAPI call as for friends wall...just replace the User id to page id, as in the following url https://graph.facebook.com/40796308305/feed?access_token=2227470867|2.oYiXeutFctg5rAweCFSIPw__.3600.129027 ..................... Thats it as simple as that. Thank you D 来源: https://stackoverflow.com/questions

Upload image to Facebook Wall / Feed via Graph API

回眸只為那壹抹淺笑 提交于 2019-12-06 09:56:43
问题 I am trying to upload local images directly to a pages feed (i.e. "Wall Photos" album). This is the code that I think should work: <?php $facebook = new Facebook(array( 'appId' => $the_app_id, 'secret' => $this_app_secret, )); $facebook->setAccessToken($the_access_token); $facebook->setFileUploadSupport(true); $attachment = array( 'message' => $the_post_body, 'name' => $this_image_name, 'picture' => '@' . $the_absolute_path_to_image ); $result = $facebook->api('/me/feed, 'post', $attachment);

is it possible to get the public facebook wall feeds when not logged in?

♀尐吖头ヾ 提交于 2019-12-06 07:41:58
I'm accually asking is it possible to get public wall feeds without auth token? If I'm not logged in to facebook, I can still see the public posts ,this is a good example : http://www.facebook.com/adele I'm using facebook graph API like this: uri ="https://graph.facebook.com/" + this.getString(R.string.wall_id) + "/feed?access_token="+Utility.mFacebook.getAccessToken(); JSONObject json = GetJSON.fromURL(uri); If I'm connected to FB I'm successfully get the feeds. Do I need to ask for a new token when I'm offline? thanx! Costi Muraru You can go to: http://www.facebook.com/feeds/page.php?id=[APP

What is maximum message length for Facebook wall post

馋奶兔 提交于 2019-12-05 10:49:06
I am sharing message from my site on facebook wall post. What should be the max length of that message ? It seems it is 63206 chars long. http://www.zdnet.com/blog/facebook/facebook-increases-status-update-character-limit-to-63206/5754 Related to Graph-API, here are the limits known: Name: { "error": { "message": "(#100) name parameter cannot be longer than 1000 characters.", "type": "OAuthException", "code": 100 } } Caption: { "error": { "message": "(#100) caption parameter cannot be longer than 1000 characters.", "type": "OAuthException", "code": 100 } } Link: { "error": { "message": "(#100)

Upload image to Facebook Wall / Feed via Graph API

99封情书 提交于 2019-12-04 15:52:56
I am trying to upload local images directly to a pages feed (i.e. "Wall Photos" album). This is the code that I think should work: <?php $facebook = new Facebook(array( 'appId' => $the_app_id, 'secret' => $this_app_secret, )); $facebook->setAccessToken($the_access_token); $facebook->setFileUploadSupport(true); $attachment = array( 'message' => $the_post_body, 'name' => $this_image_name, 'picture' => '@' . $the_absolute_path_to_image ); $result = $facebook->api('/me/feed, 'post', $attachment); But this code just yields a plain text wall post with the contents of "message" (i.e. picture field is