0

I follow facebook's tutorial and I want to share my application screen shot so i used code on below.But it didn't also i can be log in.

SharePhoto photo = new SharePhoto.Builder()
                                               .setBitmap(bm)
                                               .build();
                                       SharePhotoContent content = new SharePhotoContent.Builder()
                                               .addPhoto(photo)
                                               .build();

                                     ShareDialog shareDialog1 = new ShareDialog(Oyun.this);
                                     shareDialog1.show(content);
Doğanay Şahin
  • 91
  • 1
  • 1
  • 7
  • Possible duplicate of [How to share photo with CAPTION via Android share intent on Facebook?](http://stackoverflow.com/questions/5214764/how-to-share-photo-with-caption-via-android-share-intent-on-facebook) – TapanHP Jul 03 '16 at 01:54
  • they say "It doesnt work anymore use facebook sdk" but i couldn't. – Doğanay Şahin Jul 03 '16 at 20:49

1 Answers1

0

Please visit this answer given by this guy he share photos as well as include caption with it

How to share photo with CAPTION via Android share intent on Facebook?

You need to make a simple intent to Facebook for it and you can share it. Just go through the above answer and you will find it out very easy.

Community
  • 1
  • 1
TapanHP
  • 5,969
  • 6
  • 37
  • 66