share using intent to facebook in android

前端 未结 2 1331
情歌与酒
情歌与酒 2021-01-12 15:47

I use the following code to share content

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType(\"text/plain\");
intent.putExtra(Intent.EXTRA_TEXT,          


        
2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-12 16:05

    You could only send pure URL to facebook. It should be a bug on facebook App.

    For more detailed information, refer to the following post

    Share Text on Facebook from Android App via ACTION_SEND


    Someone has posted this issue to official facebook bug tracker, but it's still not solved yet.

    Bug 16728 - Android ACTION_SEND is not handled correctly

提交回复
热议问题