且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

iOS应用内购买 - 未收到任何产品

更新时间:2022-05-08 22:29:44

我遇到了类似的问题。以下是在阅读技术说明后需要处理/检查的一些步骤Apple:

I run into the exact similar problem. Here are some steps that needs to be adressed/checked after reading this technical note from Apple:


  • 创建唯一的应用ID

  • 为此应用ID启用应用内购买

  • 在您的设备上生成并安装新的配置文件

  • 在Xcode中更新软件包ID和代码签名配置文件

  • 检查您项目的.plist捆绑ID是否与您的应用ID相匹配

  • 填写合同,税金和银行信息。您需要有效合同

  • Create a unique App ID
  • Enable in-app purchasing for this App ID
  • Generate and install a new provisioning profile on your device
  • Update the bundle ID and code signing profile in Xcode
  • Check that your project’s .plist Bundle ID match your App ID
  • Complete your contract, tax, and banking Information. You need a VALID contract

正如官方文档中所提到的,需要提交二进制文件而不提交应用内购买的屏幕截图。我在各种博客上看到了很多关于此问题的误导信息。

As mentioned by the official doc there is NO need to submit binaries neither submit screenshot of in-app purchase. I have seen a lot of missleading info about this on various blogs.

检查完毕后,您已经解决了此列表中的每个问题,请删除您的应用并重新安装。

After checking you have addressed each point in this list, delete your app and reinstall it.

我基本上错过了两件事:正确设置我的ios付费应用程序合同,而我没有在我的设备上安装新的配置文件。可能那是你的问题?

I was basically missing two things on my side: setting up correctly my contract for ios Paid app and i didn't install the new provisioning profile on my device. May be that was your issue?