facebook-wall

facebook post users wall

心不动则不痛 提交于 2020-01-16 13:24:07
问题 i have a@yahoo.com account and also created facebook account another two users have also facebook account by b@yahoo.com and c@yahoo.com per each. b@yahoo.com and c@yahoo.com account holder pressed like button of the fan page owned by a@yahoo.com holder. now as a fan page [a@yahoo.com] but not as others, I like to post some message,attachment [to the wall of the selected users + users who liked fan page] among all of the users. now I select only b@yahoo.com user. the code is given below: I

Using API To Post Links Does Not Include Picture, Title or Meta Desc PHP

允我心安 提交于 2020-01-13 06:11:46
问题 When posting using the API i receive this: https://www.facebook.com/weather.warnings/posts/329128793830700 notice how the Title, thumbnail and meta description are missing from the thing. The following is the code i am using. $allalert = array ( 'oauth_token' => 'not pasting this thanks :P', 'message' => "New $type for $where", 'link' => $url, ); $sendalert = $facebook->api('/125291287567922/links/','POST',$allalert); Referencing how does one post a thumbnail picture to a Facebook /links

Problem with post a picture in Facebook Wall with Graph API

限于喜欢 提交于 2020-01-06 05:10:08
问题 I am using the Graph API for Facebook in order to post a message and a picture through my application to the user's wall. I use this one: $facebook->api('/me/feed', 'post', array( 'access_token' => $token, 'message' => $message, 'caption' => $caption, 'description' => $description, 'picture' => $picture, 'cb' => '' ) ); This works fine for around 4-5 months now. Suddenly I cannot post the picture. I haven't changed my code at all, but now I cannot see the image that is supposed to be posted.

Post FLV to wall

六月ゝ 毕业季﹏ 提交于 2020-01-05 08:50:50
问题 If I use the Graph API to post something on a user's wall, the "source" attribute doesn't seem to work if the video source is an FLV. What I expect is for Facebook to wrap their native video player around the FLV file, but it doesn't happen. Here's how I'm calling the API: http://i.imgur.com/0LpFJ.jpg Any ideas? 回答1: You can't include FLV content directly; you need to include your own SWF player, and attach the URL of the player you want displayed (passing the FLV source as a parameter in the

Error 201: User not visible in facebook api

為{幸葍}努か 提交于 2019-12-29 09:24:08
问题 When the app may be to post for an user in the wall of your friends... Error 201: User not visible in facebook api Please if any people can explain me about this error, and its causes. I don't know mouch about facebook api, but I understand that a post publication by an application integrated with facebook can publish unlimited post for any user. Why a user is not visible in facebook api??? 回答1: It seems it's a bug: http://bugs.developers.facebook.net/show_bug.cgi?id=11471 Many people report

Which Facebook permissions allow for posting to a page wall (not profile wall)?

我的未来我决定 提交于 2019-12-28 05:15:16
问题 I am working on a project to post data to the walls of Facebook pages. I have set up a Facebook app and currently requesting the following permissions from user when attempting to post to their page's wall: publish_stream offline_access manage_pages The code currently posts to a PROFILE's wall successfully, but when trying to post to a PAGE's wall, the following error is returned: Facebook error: (#200) The user hasn't authorized the application to perform this action. Again, I am requesting

Which Facebook permissions allow for posting to a page wall (not profile wall)?

荒凉一梦 提交于 2019-12-28 05:15:08
问题 I am working on a project to post data to the walls of Facebook pages. I have set up a Facebook app and currently requesting the following permissions from user when attempting to post to their page's wall: publish_stream offline_access manage_pages The code currently posts to a PROFILE's wall successfully, but when trying to post to a PAGE's wall, the following error is returned: Facebook error: (#200) The user hasn't authorized the application to perform this action. Again, I am requesting

Post message to facebook wall from android fb sdk always error

人盡茶涼 提交于 2019-12-28 02:44:32
问题 I have problem with fb sdk for Android (downloaded from http://github.com/facebook/facebook-android-sdk). Tried to post wall but always get error (permission already set and logged in to fb) here is the code snippet onClick function, i made small modifications on their sample code: Bundle params = new Bundle(); params.putString("message", "Test"); params.putString("name", "American Virgin"); params.putString("link", "http://bit.ly/12345"); params.putString("description", "A Freshman College

Facebook post to wall give exception

限于喜欢 提交于 2019-12-24 13:43:15
问题 I want to post text message to my facebook wall. My example code is: public void postOnMyFacebookWall(String msg) { Log.d("Tests", "Testing graph API wall post"); try { String response = facebook.request("me"); Bundle parameters = new Bundle(); parameters.putString("message", msg); parameters.putString("description", "test test test"); response = facebook.request("me/feed", parameters, "POST"); Log.d("Tests", "got response: " + response); if (response == null || response.equals("") ||

Facebook Policies: Can my application automatically post stories to my Facebook stream?

寵の児 提交于 2019-12-22 12:36:05
问题 According to the Facebook Platform Policies: You must not pre-fill the user_message parameter or content sent via an extended permission (such as a status update or note), unless the user generated the content earlier in the workflow. Does that mean that I can't publish stories to the stream automatically, even if the user agreed to? I've seen apps (such as PlayStation Network, Foto Diaria) that publish stories automatically. PlayStation Network publishes stories about actions you did in PS3