I would like to share a user photo with facebook (source from existing photo or new photo with camera). The share contains:
- name app
- link app
- title and/or description
- photo
Is it possibile without facebook login into android app? I tried with FacebookDialog but the values that i set into doesn't work.
FacebookDialog shareDialog = new FacebookDialog.ShareDialogBuilder(this)
.setApplicationName("SuperSelfie")
.setName("Hi All:")
.setPicture(fileUri.getPath())
.setDescription("Selfie...")
.setLink(
"https://play.google.com/store/apps/details?id=project.stats")
.build();
uiHelper.trackPendingDialogCall(shareDialog.present());
What is necessary?
- FacebookDialog without login
- Facebook login?
- Open Graph?
- others?
Please help me.. Thanks