我得到`'无效产品! (缺少本机值)'`in nativescript

问题描述 投票:0回答:1

我使用此方法时得到'Invalid Product! (missing native value)':purchase.getProducts()我已经在Itunes connect中制作了一个产品,现在我尝试获取它。我得到那个错误。我使用此插件:https://www.npmjs.com/package/nativescript-purchase

            ```purchase() {
              purchase.getProducts()
             .then((res) => {
            console.log(res);
            })
          .catch((e) => {
            console.log(e)
           })
        },

     ```
in-app-purchase nativescript app-store-connect nativescript-vue
1个回答
0
投票

再次阅读本教程后,我发现本段为我解决了此错误代码。

如果您没有与付费应用程序有关的有效合同,则可能看不到注册产品(消费品,非消费品等)。要解决此问题,您可以在App Store Connect>合同,税收和银行业务部分中激活付费应用程序的合同。

© www.soinside.com 2019 - 2024. All rights reserved.