我为我的 asp.net 网站配置了 Google 结帐订阅。
但我有一些问题。
- 如何取消订阅付款?
- 如何使用沙盒环境测试订阅支付?
(我的意思是如果我设置每周订阅是否会在沙盒环境中发送付款通知)
我为我的 asp.net 网站配置了 Google 结帐订阅。
但我有一些问题。
(我的意思是如果我设置每周订阅是否会在沙盒环境中发送付款通知)
我找到了解决方案,这将对某人有所帮助
CancelItemsRequest cma = new CancelItemsRequest(System.Web.Configuration.WebConfigurationManager.AppSettings["GoogleMerchantID"].ToString(), System.Web.Configuration.WebConfigurationManager.AppSettings["GoogleMerchantKey"].ToString(), EnvironmentType.Sandbox.ToString(), ["merchant_invoice_id"], "Message", "");
cma.AddMerchantItemId("2"); // item id to cancel
cma.MerchantID = System.Web.Configuration.WebConfigurationManager.AppSettings["GoogleMerchantID"].ToString();
cma.MerchantKey = System.Web.Configuration.WebConfigurationManager.AppSettings["GoogleMerchantKey"].ToString();
cma.Environment = EnvironmentType.Sandbox;
cma.SendEmail = false;
GCheckoutResponse Respa = cma.Send();