Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android post to facebook wall, stream.publish broken since few days

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?

like image 793
Roberto Avatar asked Aug 04 '11 13:08

Roberto


People also ask

Why won't Facebook post my post?

If a message like "There Was a Problem Updating Your Status" or "This Message Could Not Be Posted to This Timeline" appears when you attempt to post to your profile, more than likely Facebook is experiencing network or server issues.

Why is my Facebook feed not updating?

One of the most common reasons why your Facebook news feed not updating is an unstable internet connection. The first step you should do is to check and ensure a stable internet connection. Restart your modem or router. Try disconnecting the internet connection from your device and connecting it again.

Why is my Facebook stopping after a few posts?

Clear RAM Facebook that keeps stopping can be caused by too busy RAM. To solve this problem, you need to clear RAM and relaunch the application to check if it works. There are a number of ways to clear RAM on your smartphone, depending on your brand and series.

How do you post a picture and video on Facebook 2022?

In the Write a Post section, there's an option to add photo or video posts. When you click on that, you'll see even more options. Select Photo or Video. Then upload the photo or video of your choice.


1 Answers

Try "feed" instead of "stream.publish"

like image 153
MGK Avatar answered Oct 04 '22 15:10

MGK