当用户想要购买产品时,调用 IStoreController
的 InitiatePurchase
方法,标识用户想要购买的产品。
// Example method called when the user presses a 'buy' button
// to start the purchase process.
public void OnPurchaseClicked(string productId) {
controller.InitiatePurchase(productId);
}
您的应用程序将异步收到结果通知,对于成功购买将调用 ProcessPurchase
,对于失败将调用 OnPurchaseFailed
。