How to share to facebook with a link back to the app? Swift
Hi so basically I want to share to Facebook using their Facebook API but how do I add the link that if they click they can go back to the app or they will go to the app store if…
Hi so basically I want to share to Facebook using their Facebook API but how do I add the link that if they click they can go back to the app or they will go to the app store if…
I need to share a result of a quiz on facebook containing a custom title, picture and description. Wich worked perfect before update to version 2.9 on April 18. But it isn't working with Version 2.9. So am I missing…
I tried sharing an Image with Caption on Facebook with the help of Facebook API and the code as below: SharePhoto photo = new SharePhoto.Builder() .setBitmap(image) .setCaption("Caption is Important") .build(); SharePhotoContent content = new SharePhotoContent.Builder() .addPhoto(photo) .build(); shareDialog.show(content); It open…