2

I am trying to send app invites through the Facebook SDK v4.0 on Android. I am unable to figure out once I send the invite through my app, no notification is generated on the user's profile nor can the user see any invite of the sort.

I send the invite through:

 if (AppInviteDialog.canShow()) {
        AppInviteContent content = new AppInviteContent.Builder()
                .setApplinkUrl(appLinkUrl)
                //.setPreviewImageUrl(previewImageUrl)
                .build();
        AppInviteDialog.show(this, content);
    }
Sabeeh Zaidi
  • 59
  • 1
  • 5
  • Do you sending invites to test users? Cause by default, your app can only send invites to testers. You can set them in the your developer menu - "Roles" - https://developers.facebook.com/apps/{Your app id}/roles/ – VadymVL May 06 '15 at 08:00
  • Yes I have tried sending them to testers but they still aren't showing up. – Sabeeh Zaidi May 06 '15 at 08:19
  • Does your `appLinkUrl` point to a site that has the right kind of metadata? See https://developers.facebook.com/docs/app-invites/android#app_links – damian Jun 27 '15 at 19:08

0 Answers0