我真的很享受Ionic 2应用程序的开发,但目前我的购买过程存在一些问题.
如何在应用启动时检查用户是否有有效购买?
我想实现以下行为:
用户已订阅: – >显示PAGE A
用户没有订阅: – >显示PAGE B.
我是否必须在本地保存订阅信息?
**编辑**
我使用firebase后端,可以在那里存储购买.
这是我的功能:
buyCoach(productName: string): void {
console.log(productName);
InAppPurchase
.getProducts([productName])
.then((products) => {
InAppPurchase
.buy(productName)
.then((data)=> {
// {
// transactionId: ...
// receipt: ...
// signature: ...
// }
// maybe store somethign to firebase? But what?
})
.catch((err)=> {
console.log("error buy");
console.log(JSON.stringify(err));
});
})
.catch((err) => {
console.log("error getProducts");
console.log(JSON.stringify(err));
});
}
最佳答案 您需要身份验证和授权解决方案.
必须以某种方式识别(认证)用户.您不需要实现您的,而是可以使用Facebook,GooglePlus或Tweeter.您可以使用Azure移动应用程序服务,允许您的用户登录这三者中的任何一个.
完成上述操作后,您可以安全地调用您已开发的服务,例如用户配置文件服务,它可以告诉您用户拥有的订阅.
为了提高性能,您可以使用Ionic’s Secure Storage插件在本地存储此信息
要导航到另一个页面,您可以使用NavController.push导航到页面.