如何在Pushwoosh中设置深层链接,我想打开页面等页面.html?id=1我使用 VS 2015 和 apache cordova for android。
这是文档,但我不明白如何设置!
我设置了com.pushwoosh://page.html?id=1,但没有打开!
我建议使用 https://github.com/nordnet/cordova-universal-links-plugin在那里为Cordova设置深层链接非常容易,它可以与Pushwoosh深度链接功能配合使用。
到 cordova config 添加:
<universal-links>
<host name="sample.com" scheme="pushwoosh" event="ul_myExampleEvent" />
</universal-links>
到代码添加:
universalLinks.subscribe('ul_myExampleEvent', function (eventData) {
// do some work
// in eventData you'll see url и and parsed url with schema, host, path and arguments
console.log('Did launch application from the link: ' + JSON.stringify(eventData));
alert('Did launch application from the link: ' + JSON.stringify(eventData));
});
然后对科尔多瓦使用简单的重定向。就是这样!
附言我会将其添加到指南中。谢谢!