I have created an android app that I haven't yet published to google play but I want to implement facebook app invites. I read the documentation on facebook but I just couldn't get what this app link url is and how to generate it using app link tool since I am not hosting any website for this app link url. Could somebody help me please?
String appLinkUrl, previewImageUrl;
appLinkUrl = "applinkurl";
previewImageUrl = "imageurl";
if (AppInviteDialog.canShow()) {
AppInviteContent content = new AppInviteContent.Builder()
.setApplinkUrl(appLinkUrl)
.setPreviewImageUrl(previewImageUrl)
.build();
AppInviteDialog.show(this, content);
}
I don't have any website and neither have I published my app on google play..... suppose just for the sake of testing I use any of google play's app link. could you explain now?