FB publishing for all my Android applications stopped working today saying - ""There was a problem generating the Feed story from the provided data"". They had been working fine for the last 6 months

All the applications did was publish quotes on users' walls. I use the following code to do this -

Bundle parameters = new Bundle();

parameters.putString("attachment", myAttachent);
facebookClient.dialog(this, "stream.publish", parameters, this);

The publishing worked fine till now. Any idea what could be wrong?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 1 down vote accepted

This issue is now fixed. It appears to have been a problem with their API service. I have tested and asked my customers to confirm.

They have updated the bug status to "Fixed"

http://developers.facebook.com/bugs/295765603772094

link|improve this answer
It has indeed started working again for all my apps except for a minor change - the cancel button no longer takes it back to my Activity, just reloads the page. But that is a separate bug I guess. – Abhinav Sep 29 '11 at 10:55
feedback

This is my working code........currently checked............

 try {

                    JSONObject me = new JSONObject(mFacebook.request("me"));
                    fbname = me.getString("name");
                    first_name = me.getString("first_name");

                    System.out.println("Name :: " + fbname);
                    System.out.println("FName :: " + first_name);

                    JSONObject attachment = new JSONObject();
                    attachment.put("message", "Oil and Gas Navigator");

                    attachment.put("href", link);
                    attachment.put("description", "<B>" + title + "" + desc);
                    Bundle params = new Bundle();
                    params.putString("attachment", attachment.toString());

                    JSONObject actionLink = new JSONObject();
                    actionLink.put("text", "Link");
                    actionLink.put("href", link);
                    JSONArray jasonarray = new JSONArray().put(actionLink);
                    params.putString("action_links", jasonarray.toString());

                    mFacebook.dialog(mActivity, "stream.publish", params,
                            new SampleDialogListener());

                } catch (Exception ex) {
                    ex.printStackTrace();
                }
link|improve this answer
Thanks Divyesh, let me try out your code and get back. – Abhinav Sep 28 '11 at 9:56
feedback

@ihurupin I can confirm this issue is affecting ios devices also. Code was working until ~ 24 hours ago (i was debugging specifically adding custom news feed). Now getting a nice "There was a problem generating the Feed story from the provided data"

bug filed with fb dev here fb dev bug tracking

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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