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.

I have a lot of apps published using the FB android sdk

github.com/facebook/facebook-android-sdk

All my applications that use FB stopped working since few days. This is necessarily a change or a bug from FB side, because nothing has changed in my applications, It worked for months.

The dialog that opens to post a message ("stream.publish") seems not use the param "message", the form opens but the text box is empty!

Bundle parameters = new Bundle();
parameters.putString("message", "test message");                                          
mFacebook.dialog(Example.this, "stream.publish", parameters,new SampleDialogListener());

Using debug I saw the URL with the "message" param:

https://m.facebook.com/dialog/stream.publish?message=test+message&app_id=....

The text input in the webview is emtpy!

Somebody have an idea or a workaround to fix this issue?

share|improve this question
same problem here – ZZZ Aug 5 '11 at 0:55
I also notified the bug here: bugs.developers.facebook.net/show_bug.cgi?id=19685 – Roberto Aug 5 '11 at 9:14

2 Answers

up vote 1 down vote accepted

Had the same problem for the last few days. Looks like Facebook is deprecating the Stream API: http://developers.facebook.com/docs/reference/rest/stream.publish/, not sure if this has anything to do with that.

Anyway, switching to using the Graph API's 'feed' method worked for me.

share|improve this answer
Ok I solved my problem using the graph API, here an example stackoverflow.com/questions/4641680/… Facebook is now ignoring the message parameter developers.facebook.com/blog/post/510 facebook update. – Roberto Aug 12 '11 at 14:55

Try "feed" instead of "stream.publish"

share|improve this answer
This worked for me. An example on how to use the "feed": developers.facebook.com/docs/reference/dialogs/feed – thekindofme Oct 4 '11 at 11:09

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.