following situation: I have an app in the app store, where among other things, user can communicate with each other. In order to do so, they first have to connect to each other and confirm the connection. Now, I want to add an invitation functionality, basically:
- userA sends a link to website to newUser
- new user opens website, with a link to the app store
- new user installs the app
- a connection between user A and new user (now user B) is established.
In the conventional web-world I would have an invite link: www.mysite.com?invitingUser=userA and I could evaluate it after sign up. Is there something similar in iOS world, a way to provide the installed app with a parameter directly after or during installation?
Thanks in advance