1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

FacebookSDK4.3.0でSharePhotoContentにcontentUrlをセットするとシェアダイアログが表示されない

Posted at

FacebookSDKで画像をシェアしたい時には SharePhotoContent を使いますが、 contentUrl をセットするとなぜかシェアダイアログが表示されないという現象に小一時間ハマりました。

Screenshot_2015-08-27-14-02-52_png.png

SDKのコードを追えていないのですが、URLを変えたりドキュメントを調べたりして色々試してもダメそうだったので書いておきます。
もし間違っていたり追記があれば、是非お願いします。

SharePhoto sharePhoto = new SharePhoto.Builder()
        .setBitmap(bitmap)
        .setCaption("Caption")
        .build();

SharePhotoContent content = new SharePhotoContent.Builder()
        .addPhoto(sharePhoto)
//        .setContentUrl(Uri.parse(url)) これがあるとダイアログが表示されない
        .build();

ShareDialog.show(activity, content);

確認したのは、Android4.4.0です。

そもそもリンクのシェアではないので setContentUrl() をつけても何も変わらない気がするんですが、何なんでしょうか。。。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?