0

I am trying Application referral using this https://developers.google.com/app-invites/android/ detail.

My Application requirement once receiver installed the referred Application, sender needs to get some credit like points.

But i can not get any data about sender while receiver get install the application.

Kindly please let me know how to get the sender infomation using https://developers.google.com/app-invites/android/ this detail.

karthik
  • 321
  • 1
  • 8
  • 21

1 Answers1

0

The user who is receiving the invitation will know who sent the invitation from the sms or email sender information, but the receiving app will not get this data, as you point out. However, the sending app can send an app-specific identity as a query parameter of the deeplink, perhaps a game specific user id that can be used to award points.

Jim Cunningham
  • 282
  • 1
  • 5
  • if i have change the deep link as my application play store link i can not get invitation alert. Does you have any idea about that? please let me know. @Jim – karthik May 19 '16 at 16:03
  • Sorry for the late replay. Based on what I can infer from your description, you can add query parameters to your deep link without effecting your deeplink and it's ability to get an invitation alert (which I infer means match an Intent filter). For example, in the invitation builder: .setDeepLink(Uri.parse("http://example.com/offer/free_trial_campaign?senderGameId=1234")) – Jim Cunningham Jun 07 '16 at 19:33