我申请成功了一个应用内产品,我将之ID置为Donation,就是开发者捐助。产品也通过了,我在应用中的代码设置如下:
private async void Donate(object sender, EventArgs e)
{
try
{
var ProdList = await CurrentApp.LoadListingInformationAsync();
var Prod = ProdList.ProductListings.FirstOrDefault(p => p.Value.ProductType == ProductType.Durable);
var Receipt = await CurrentApp.RequestProductPurchaseAsync(Prod.Value.ProductId,true);
//var ProdList = await Windows.ApplicationModel.Store.CurrentApp.LoadListingInformationByProductIdsAsync(new string[]{"Donation"});
//await CurrentApp.RequestProductPurchaseAsync("Donation", false);
}
catch(Exception ex)
{
MessageBox.Show("错误:"+ex.Message);
}
}
现在问题就是,我发布成功新应用,然后点击捐助按钮,能弹出来购买窗口,点击购买的时候显示错误,错误代码为c101a006,网上说把自己的xbox区域和微软账户的区域换成中国就好了,但是我这两个区域都是中国啊,而且我点击别人的应用的捐助按钮能付款啊,别人打开我的应用的捐助按钮也会出现错误。。。这个MessageBox拿到的消息是hresult e_fail has been returned from a call to a com component求问这是什么原因。。。怎么解决?