应用内购买一次又一次被拒绝
我已经在我的应用程序中实现了应用程序内购买,并添加了一些应用程序内购买。在 itunes connect 上,我已填写应用内购买的所有详细信息。最初,应用内购买的状态是“等待审核”,我能够在沙盒环境中测试应用内购买。但每隔 4 天后,应用内购买就会获得新的状态“需要开发人员采取行动”,并且在语言部分中会有应用内购买的“已拒绝”标志。因此,为了再次能够使用此功能,我一直在对描述进行少量更改,这使得应用程序内购买再次受到审查,
因为该项目的历史记录是:现在应用程序版本 1.0 可在应用程序商店中使用,其中应用程序内购买是未实施 我添加了新的应用程序版本 2.0,该版本处于“被开发人员拒绝”状态
,所以我只想知道为什么 itunes connect 团队一次又一次地拒绝应用程序购买? 我也没有收到任何有关此拒绝的电子邮件,
有人指导我解决此问题的方法是什么,或者其他人以前遇到过此问题吗?
i have implemented the in app purchase in my application and added few in app purchases. on itunes connect i have filled all the details for the in app purchases. Initially the status of in app purchase was "waiting for review" and i was able to test in app purchase in sandbox env. but after every 4 days, in app purchases gets new status "developer action needed" and in the language section there is a "rejected" sign of in app purchase. so to make this use able again i have been using to make little change in description, which makes the in app purchase again in review
as history of the project is: right now application version 1.0 is available on app store in which in app purchases are not implemented
and i have added new application version 2.0 which is in "rejected by developer" state
so i just want to know why itunes connect team is rejecting in app purchase again and again?
also im not getting any email regarding this rejection
any one guide me what is the solution to this problem or any one else has faced this issue before?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否在苹果商店上传了实施应用内购买代码的新版本?如果没有,他们将拒绝应用内购买项目。
另外,如果苹果拒绝您的应用内购买,那么您是否向他们提供了所有详细信息。就好像他们发现应用内购买不合适一样,他们可以拒绝它。向他们提供适当的详细信息和适当的屏幕截图。
此外,如果苹果拒绝您的应用内购买,那么您可以向苹果审核团队询问该问题。 使用链接。他们会让您知道确切的问题。
希望这会对您有所帮助。
Have you uploaded new version on apple store which is having in-app purchase code implemented ? if not then they will reject the in-app purchase items.
also if apple is rejecting your in-app purchased , then have you provided all the details to them. As if they find the in-app purchase improper then they can can reject it. Provide them proper details and proper screen shot for the same.
Also if apple is rejecting your in-app purchase then you may can ask apple review team about the issue. Use the Link. they will let you know the exact issue.
Hope this will help you.
我最近在提交给 Apple 的应用程序中遇到了这个问题。
应用程序购买验证中的服务器端需要有一个后备系统。
它在 Apple 中有记录,但很好地隐藏在技术说明中:
http://developer.apple.com/library/ios/#technotes /tn2259/_index.html
方法如下:
“始终首先使用生产 URL 验证您的收据;如果您收到 21007,则继续使用沙箱 URL 进行验证状态码。
遵循这种方法可确保您的应用程序在沙箱中进行测试或审核或在 App Store 中上线时无需在 URL 之间进行切换。”
I recently had this problem with an app submitted to Apple.
There is a fallback system that needs to be in place for server side in app purchase validation.
It is documented in Apple, but VERY well hidden in tech note :
http://developer.apple.com/library/ios/#technotes/tn2259/_index.html
Here is the way to do it :
"Always verify your receipt first with the production URL; proceed to verify with the sandbox URL if you receive a 21007 status code.
Following this approach ensures that you do not have to switch between URLs while your application is being tested or reviewed in the sandbox or is live in the App Store."