1

我在 App Store 中有一个实时应用程序。我正在使用 iTMS 传输工具通过元数据 XML 将 Auto Renewable Products 上传到 App Store。我有美国领土的美元格式的产品价格(例如:0.99 美元)。

在 XML 中,必须通过所有 175 个 Apple 支持的 XML 区域价格层。

My Questions are,
1. How to calculate price tier for this amount.(0.99$ USD --> Equivalent Tier).
2. Based on this, how to calculate the price tier for all other territories.

**Sample XML format:**
<prices>
 <price>
<territory>QA</territory>
**<tier>3</tier>**
</price>
<price>
<territory>AZ</territory>
**<tier>2</tier>**
</price>
<price>
<territory>SE</territory>
<tier>8</tier>
</price></prices>

I have checked App store connect API's. 

我不清楚使用哪个 API 来获取所有地区相对于给定美元金额的价格等级。有人可以帮我吗?

文档:https ://developer.apple.com/documentation/appstoreconnectapi

4

1 回答 1

0

根据我上传订阅应用程序时的记忆,我必须首先在应用程序的开发者帐户上创建订阅组。

您这样做的方式将在安装应用程序之前对其收费,并且会一次性付款。

在应用内购买部分创建订阅组。您必须获得每个计划/自动续订订阅的批准。然后为每个计划使用产品 ID。

两个很好的链接两个帮助是: https://help.apple.com/app-store-connect/#/dev06f89ce98 https://developer.apple.com/documentation/storekit/in-app_purchase

祝你好运!

于 2020-09-11T19:15:25.817 回答