gpt4 book ai didi

reactjs - 如何在苹果商店直接打开我们的应用程序?

转载 作者:行者123 更新时间:2023-12-04 12:38:06 28 4
gpt4 key购买 nike

如何在苹果商店直接打开我的应用程序?
我试过这个,但它会打开iTunes应用程序而不是苹果商店应用程序

Linking.openURL(
'itms-apps://apps.apple.com/id/app/halojasa/id1492671277?l=id'
).catch(err => {
console.log('Error from rate us ', err)
})

最佳答案

您必须添加 LSApplicationQueriesSchemes到 info.plist 文件。

<key>LSApplicationQueriesSchemes</key>
<array>
<string>itms-apps</string>
</array>

如果你使用可以使用 canOpenURL方法。它会提示你错误
const link = 'itms-apps://apps.apple.com/id/app/halojasa/id1492671277?l=id';
Linking.canOpenURL(link).then(supported => {
supported && Linking.openURL(link);
}, (err) => console.log(err));

关于reactjs - 如何在苹果商店直接打开我们的应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62445835/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com