Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im having alot of trouble trying to post to a friends wall using the Facebook api in Android. This is what I have at the moment:

if (facebook.isSessionValid()) {
                        String response = facebook.request((userID == null) ? "me" : userID);

                        Bundle params = new Bundle();
                        params.putString("message", "put message here");
                        params.putString("link", "http://mylink.com");    
                        params.putString("caption", "{*actor*} just posted this!");
                        params.putString("description", "description of my link.  Click the link to find out more.");
                        params.putString("name", "Name of this link!");
                        params.putString("picture", "http://mysite.com/picture.jpg");

                        response = facebook.request(((userID == null) ? "me" : userID) + "/feed", params, "POST");       

                        Log.d("Tests",response);
                        if (response == null || response.equals("") || 
                                response.equals("false")) {
                            Log.v("Error", "Blank response");
                        }
                    } else {
                        // no logged in, so relogin
                        Log.d("1234567890", "sessionNOTValid, relogin");

                    }
                }catch(Exception e){
                    e.printStackTrace();
                }

But this returns with this error:

12-11 21:34:06.604: D/FACEBOOK RESPONSE(14954): {"error":{"message":"(#200) Feed story publishing to other users is disabled for this application","type":"OAuthException","code":200}}
share|improve this question
did you set appropriate permissions ? – fgeorgiew Dec 11 '12 at 21:55
These are the permissions that I have set: "new String[] {"publish_stream,publish_actions,read_stream"}" – Marche101 Dec 11 '12 at 21:56
Also, Are comments on stackoverflow not working properly at the moment. Ive got a notification saying "dont see any ;)" but its not come up here. – Marche101 Dec 11 '12 at 22:07

1 Answer

up vote 14 down vote accepted

You probably created this Facebook application recently, which means the February 2013 breaking changes are enabled.

February's Breaking Changes include:

Removing ability to post to friends walls via Graph API

We will remove the ability to post to a user's friends' walls via the Graph API. Specifically, posts against [user_id]/feed where [user_id] is different from the session user, or stream.publish calls where the target_id user is different from the session user, will fail. If you want to allow people to post to their friends' timelines, invoke the feed dialog. Stories that include friends via user mentions tagging or action tagging will show up on the friend’s timeline (assuming the friend approves the tag). For more info, see this blog post.

We are disabling this feature starting in February, if you wish to enable it (only temporarily until February), go to your app dashboard > Settings > Advanced > Disable "February 2013 Breaking Changes"

I highly recommend against doing so, however, since starting February this functionality will cause your app to throw the same error again.

share|improve this answer
Ah, thanks so much! Do you know how I would go about making a story that includes another user? – Marche101 Dec 12 '12 at 23:04
1  
The best way is to invoke the feed dialog with a to parameter in the Bundle with the UID of the friend (that should work). Or, you can post a regular status update with user mentions tagging so that it can show up on the friend's timeline. – Jesse Chen Dec 13 '12 at 0:25
@JesseChen Can you please tell me how to tag the friends using facebookmobile api – Trinu Mar 21 at 9:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.