I am trying to post some content on a Facebook wall through an Android app. I use the following Intent code for sharing
Intent msg = new Intent(Intent.ACTION_SEND);
msg.setType("text/plain");
msg.putExtra(Intent.EXTRA_TEXT, display_quote.getText().toString() );
startActivity(Intent.createChooser(msg, "Share Quote"));
However, when I select “Facebook” from the options that I get, I get redirected to the URL http://m.facebook.com/sharer.php and I get an error message saying “Your link cannot be shared” .
Is there any other way to post to my Facebook wall via the Android app?
source
share