Android: How to share image with text on facebook via intent?

后端 未结 7 2467
眼角桃花
眼角桃花 2020-11-27 03:18

I\'d like to share a photo with caption pre-filled from my app via a share intent, on facebook.

Example code

Intent intent = new Intent();
intent.set         


        
7条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-27 04:10

    FB no longer allows you to prefill the sharing message.

    In order to circumvent this, you will need to use an SDK to publish via a Graph request. For this you will need the publish_actions permission. Since last month you need to submit your app to a review process to gain access to publish_actions. Which you would fail if your app prefills the sharing texts. Trust me - I've had the Chutzppah to try.

    So it looks like we would have to comply.

    B.t.w. in iOS you can still prefill the texts using the FB sdk. Who knows for how long.

提交回复
热议问题