【发布时间】:2017-12-27 11:38:59
【问题描述】:
我正在尝试在我的 cordova 应用程序中安装“https://github.com/florentvaldelievre/virtualartifacts-webintent”以从应用程序 url 获取参数。
window.plugins.webintent.getUri(function(url) {
alert(url);
});
**But, the url will return 2 params as utm_source and utm_medium.**
I am using the referral link like: "TestApp://https://play.google.com/store/apps/details?id=test.product&referral_code=testrefer"
AndroidManifest.xml write the following:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="TestApp" />
</intent-filter>
I don't get the "referral_code" parameter from the URL.
Any one please help me....
【问题讨论】:
标签: cordova google-play