我创建了一个使用应用内购买的应用,我已经在 iTunes 上设置了应用内购买,我什至使用沙盒用户对其进行了测试,所有这些都运行良好。
现在我包含了一个 iMessage 应用扩展,相同的应用内购买产品返回 invalidProduct Id,但在主应用中继续正常工作。
可能是因为 bundle ID?
mainapp: com.whatever.bundleid
app iMessage: com.whatever.bundleid.iMessage
iMessage extension: com.whatever.bundleid.iMessage.MessagesExtension
顺便说一句,我正在使用 SwiftyStoreKit pod。
if let inappIndentifier = stickerPackage.inAppPurchaseId {
SwiftyStoreKit.retrieveProductsInfo([inappIndentifier]) { result in
if let product = result.retrievedProducts.first {
let priceString = product.localizedPrice!
completion(true, priceString)
} else if let _ = result.invalidProductIDs.first {
completion(false, nil)
} else {
print("Error: \(result.error)")
completion(false, nil)
}
}
}
我犯了一个巨大的错误,我没有创建 iMessage 扩展程序,而是创建了一个 iMessage 应用程序扩展程序。 删除“iMessage 应用”后,应用内购买开始正常工作。
关于ios - 来自 iMessage 应用程序扩展的应用内购买,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43499184/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://jike.in/) | Powered by Discuz! X3.4 |