share using intent to facebook in android

前端 未结 2 1329
情歌与酒
情歌与酒 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 15:51

    According to the latest updating to the bug tracker this is 'By Design' and the bug has been closed. https://developers.facebook.com/bugs/332619626816423/

    So looks like this isn't going to be possible via intents..

提交回复
热议问题