Branch.io Track Referral without rewards -
scenario: user(primary) sends out app download link friend & friend downloads app using same link. when primary user opens app again, how can know referral successful (true or false enough).
question: how can using branch.io?
my assumption:
- createbranchuniversalobject
- generateshorturl & share friend (now friend installs)
- whenever user open app use “getfirstreferringparams” track referral
correct me!
alex branch.io here: great question. our referral feature designed handle credit tracking out of box, can add bit of custom handling implement identity tracking way describe.
the prerequisite work using branch setidentity() method of users @ point when register unique account in app. flow looks this:
- user downloads app.
- user registers unique account in app , trigger setidentity() method.
- user creates sharing link , sends user b. branch automatically records user a's identity info in data link.
- user b opens link , downloads app. data link (including user a's identity) returned part of branch init() call. store data locally until...
- ...user b registers unique account in app , trigger setidentity() method.
- you send message own server , queue inform user referral accepted.
if tracking referral credits, need set rules too. documentation process on this page.
hope helps!
Comments
Post a Comment