facebook-wall

Post to Friends wall on Facebook failed with Social Framework in iOS 6

人盡茶涼 提交于 2019-11-30 14:43:30
I am trying to POST a invitation to iOS app on my facebook friends wall using Social framework in iOS 6+. But it gives me following error error = { code = 200; message = "(#200) Feed story publishing to other users is disabled for this application"; type = OAuthException; }; I know this is due to Facebook disable this functionality as mentioned on Facebook blog & this stackoverflow question On stackoverlow's page , it is written that use feed dialog. But I can't see any option to use feed dialog in Social framework. What is the alternative to POST on friends wall using Social Framewrok in iOS

Embedding HTML5 content into Facebook wall posts?

一笑奈何 提交于 2019-11-30 07:33:37
I have managed to get a custom SWF embedded in Facebook wall posts. This can be done by adding special meta tags to the source code of the linked page. For example the respective source of a YouTube play page for this looks like the following: <meta property="fb:app_id" content="87741124305"> <meta property="og:url" content="http://www.youtube.com/watch?v=qLkk3i4tMQw"> <meta property="og:title" content="Marco Huck vs Hugo Hernan Garay 10. Runde KO"> <meta property="og:description" content="..."> <meta property="og:type" content="video"> <meta property="og:image" content="http://i2.ytimg.com/vi

Facebook PHP SDK 3.0 - How to get my page wall posts at any time?

痴心易碎 提交于 2019-11-30 00:22:28
问题 I have been trying to read the news feed from a page that I have using an app that I'm coding. Now I have had some issues trying to do this using the PHP SDK 3.0. I am able to get the page information, but this is something that is publicly available any way. My question is how do I get (read) the page wall posts? I'm assuming I have to grant permissions to my app to post to page, but how do I do this? currently this is the code that I have $appId = 'XXXXXXXXXXXXXXXXXX'; $secret =

How to get public wall posts with the facebook API

半腔热情 提交于 2019-11-29 23:19:52
I m trying to get wall posts from a profile facebook. I have no problems with the fan pages and my user token is valid (at least for the fan pages). Example with this post : https://www.facebook.com/aurelia.filion/posts/10151342315613445 As you can see the post is public. So i try: graph.facebook.com/529628444_10151342315613445?access_token=MY_TOKEN graph.facebook.com/10151342315613445?access_token=MY_TOKEN it returns : "error": { "message": "Unsupported get request.", "type": "GraphMethodException", "code": 100 In my Api graph explorer, i can't see the posts from this user neither. graph

Error 201: User not visible in facebook api

妖精的绣舞 提交于 2019-11-29 17:07:06
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??? It seems it's a bug: http://bugs.developers.facebook.net/show_bug.cgi?id=11471 Many people report this, I also encountered this problem today... Thanks, it ocured when a facebook profile is added to system

Post to other users wall from facebook api

烂漫一生 提交于 2019-11-29 13:08:41
I am creating a site that allow users to sell items, login is based on the facebook API. When an ad is created it needs to be approved, so it is not visible at the time of creation. I have a field where the user can check whether he/she will allow the new advert to be published to his/hers facebook profile. This works perfect as it publish just fine, but the problem here is that the advert is not visible My question is if it is possible to post such things to another user's wall through the API. The code now is define('APP_ID', 'XXXX'); define('APP_SECRET', 'XXXXX'); $facebook = new Facebook

Embedding HTML5 content into Facebook wall posts?

…衆ロ難τιáo~ 提交于 2019-11-29 09:53:13
问题 I have managed to get a custom SWF embedded in Facebook wall posts. This can be done by adding special meta tags to the source code of the linked page. For example the respective source of a YouTube play page for this looks like the following: <meta property="fb:app_id" content="87741124305"> <meta property="og:url" content="http://www.youtube.com/watch?v=qLkk3i4tMQw"> <meta property="og:title" content="Marco Huck vs Hugo Hernan Garay 10. Runde KO"> <meta property="og:description" content="..

How to post message on facebook wall using Facebook android SDK integrate android app

拜拜、爱过 提交于 2019-11-29 08:49:50
i am developing social app this app integrate to facebook my app related message post to facebook wall i am using facebook sdk in facebook sdk mPostButton.setOnClickListener(new OnClickListener() { public void onClick(View v) { String message = "Post this to my wall"; Bundle parameters = new Bundle(); parameters.putString("message", message); mAsyncRunner.request("me/feed", parameters, "POST", new SampleDialogListener()); } }); mPostButton.setVisibility(mFacebook.isSessionValid() ? View.VISIBLE : View.INVISIBLE); } public class SampleDialogListener extends BaseDialogListener implements

How to get public wall posts with the facebook API

牧云@^-^@ 提交于 2019-11-28 20:37:13
问题 I m trying to get wall posts from a profile facebook. I have no problems with the fan pages and my user token is valid (at least for the fan pages). Example with this post : https://www.facebook.com/aurelia.filion/posts/10151342315613445 As you can see the post is public. So i try: graph.facebook.com/529628444_10151342315613445?access_token=MY_TOKEN graph.facebook.com/10151342315613445?access_token=MY_TOKEN it returns : "error": { "message": "Unsupported get request.", "type":

Post to other users wall from facebook api

若如初见. 提交于 2019-11-28 06:41:39
问题 I am creating a site that allow users to sell items, login is based on the facebook API. When an ad is created it needs to be approved, so it is not visible at the time of creation. I have a field where the user can check whether he/she will allow the new advert to be published to his/hers facebook profile. This works perfect as it publish just fine, but the problem here is that the advert is not visible My question is if it is possible to post such things to another user's wall through the