What I want to do is posting a simple text to wall with the facebook sdk in android studio. I want to post the text without the need of the Facebook app by the user. Is that possible?
I've read https://developers.facebook.com/docs/android/share
And I have 2 problems.
1) How can I set the text of my share?
FacebookDialog shareDialog = new FacebookDialog.ShareDialogBuilder(this)
.setLink("https://developers.facebook.com/android")
.build();
uiHelper.trackPendingDialogCall(shareDialog.present());
I can't see any setText method..or something like that..
Also can I do this without the facebook app installed on my phone?
I get the error
Failed to find provider info for com.facebook.katana.provider.AttributionIdProvider
I don't want to force my users to have facebook installed.. what should I do ?