How to get iOS app install referral link in appstore?

12.2k Views Asked by At

I am building eCommerce platform.This includes website,android app and iOS app.

I already implemented for Android by using Google Play Install Referrer API.For Android,when users install from a referral link,we will get referral link and other data and match that when user sign up in our app.So,we can count referral score.

I searched for iOS solution,but i'm not getting any proper solution.

What should i do?

Thanks.

3

There are 3 best solutions below

1
On

You can do this via Deep Linking. You can generate referral URL with some info such as https://my.referal.app.com/referal?referalId=1.Then when another user open this URL, it automatically will redirect to your app. And you can get referralId value in App Delegate in method open(_:options:completionHandler:)

3
On

You can make this through Universal Links Concept

Link Here:https://developer.apple.com/ios/universal-links/

2
On

This is about as good as you can get.

Go to appstoreconnect > App Analytics > choose app > Acquisition > Campaigns > Click the Plus icon and enter a campaign.

Basically, when you post your appstore link, add a ct=something parameter and you'll see installs from people who followed that link.