How to Implement In-App Purchases in Windows 10 Apps?(如何在 Windows 10 应用中实现应用内购买?)
问题描述
我想在我的 Windows 通用应用中集成应用内购买.我在编码之前做了以下事情.
在
当它什么都不返回时,很有可能
WindowsStoreProxy.xml中的某些东西是错误的.我建议您创建自己的WindowsStoreProxy.xml并使用CurrentAppSimulator.ReloadSimulatorAsync方法读取它,如下所示:var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(@"TestingWindowsStoreProxy.xml");等待 CurrentAppSimulator.ReloadSimulatorAsync(file);对我来说,使用
C:UsersAppDataLocalPackagesLocalStateMicrosoftWindows StoreApiDataWindowsStoreProxy 中的默认值.xml代码>没用,但一个更改已经解决了问题:我更改了这部分 <LicenseInformation><应用程序><IsActive>true</IsActive><IsTrial>true</IsTrial></应用程序></许可证信息>到这里:
<LicenseInformation><应用程序><IsActive>true</IsActive><IsTrial>假</IsTrial></应用程序></许可证信息>(所以
IsTrial被设置为 false...)现在我还想提一下,这有点奇怪,因为在默认的
WindowsStoreProxy.xml中没有为我的应用内购买定义产品.所以对于我的RemoveAds",一个合适的WindowsStoreProxy.xml应该是这样的:<?xml version="1.0" encoding="utf-16" ?><当前应用程序><房源信息><应用程序><AppId>00000000-0000-0000-0000-000000000000</AppId><LinkUri>http://apps.microsoft.com/webpdp/app/00000000-0000-0000-0000-000000000000</LinkUri><CurrentMarket>zh-CN</CurrentMarket><AgeRating>3</AgeRating><MarketData xml:lang="en-US"><名称>应用名称</名称><描述>应用描述</描述><价格>1.00</价格><CurrencySymbol>$</CurrencySymbol><CurrencyCode>USD</CurrencyCode></市场数据></应用程序><Product ProductId="RemoveAds" LicenseDuration="1" ProductType="Durable"><MarketData xml:lang="en-US"><名称>移除广告</名称><价格>1.00</价格><CurrencySymbol>$</CurrencySymbol><CurrencyCode>USD</CurrencyCode></市场数据></产品></列表信息><许可证信息><应用程序><IsActive>true</IsActive><IsTrial>假</IsTrial></应用程序><产品ProductId="1"><IsActive>true</IsActive></产品></许可证信息><消耗品信息><Product ProductId="RemoveAds" TransactionId="10000000-0000-0000-0000-000000000000" Status="Active"/></ConsumableInformation></当前应用程序>我想指出的另一件事是带有两个参数的
CurrentAppSimulator.RequestProductPurchaseAsync已过时.去掉 true 参数,你会得到PurchaseResults实例作为结果,它包含ReceiptXML属性中的收据.
I want to integrate in-app purchasing in my windows universal app. I do the following thing before coding.
Make App on Windows Dev Center
Add products with details in IAPs section and submit to Store as you can see in Image
- After that I use the following code in my app to get list of products of In-App purchasing and button to purchase product. I also used
CurrentAppinstead ofCurrentAppSimulatorin my code but it goes in exception.
private async void RenderStoreItems()
{
picItems.Clear();
try
{
//StoreManager mySM = new StoreManager();
ListingInformation li = await CurrentAppSimulator.LoadListingInformationAsync();
System.Diagnostics.Debug.WriteLine(li);
foreach (string key in li.ProductListings.Keys)
{
ProductListing pListing = li.ProductListings[key];
System.Diagnostics.Debug.WriteLine(key);
string status = CurrentAppSimulator.LicenseInformation.ProductLicenses[key].IsActive ? "Purchased" : pListing.FormattedPrice;
string imageLink = string.Empty;
picItems.Add(
new ProductItem
{
imgLink = key.Equals("BaazarMagzine101") ? "block-ads.png" : "block-ads.png",
Name = pListing.Name,
Status = status,
key = key,
BuyNowButtonVisible = CurrentAppSimulator.LicenseInformation.ProductLicenses[key].IsActive ? false : true
}
);
}
pics.ItemsSource = picItems;
}
catch (Exception e)
{
System.Diagnostics.Debug.WriteLine(e.ToString());
}
}
private async void ButtonBuyNow_Clicked(object sender, RoutedEventArgs e)
{
Button btn = sender as Button;
string key = btn.Tag.ToString();
if (!CurrentAppSimulator.LicenseInformation.ProductLicenses[key].IsActive)
{
ListingInformation li = await CurrentAppSimulator.LoadListingInformationAsync();
string pID = li.ProductListings[key].ProductId;
string receipt = await CurrentAppSimulator.RequestProductPurchaseAsync(pID, true);
System.Diagnostics.Debug.WriteLine(receipt);
// RenderStoreItems();
}
}
I also Associate my app with Store and my app package is same as in MS Dev Center App as you can see in Image
When I run my app and click on Buy button, I got this dialogue box as you can see in Image after that I did not get receipt data from Store.
If I'm doing wrong then Please give me proper guide to implement the In-app purchase and test that In-app purchase in my laptop device.
I also had this issue and the problem was in the WindowsStoreProxy.xml file.
Solution in short
By default in the WindowsStoreProxy.xml the IsTrial is set to true and in that mode in-app purchases do not seem to work. When I changed it to false it started to work for me.
Solution a little bit longer
So first of all here we are talking about the simulation of an In-App Purchase in development time (by using the
CurrentAppSimulatorclass). In that case you need aWindowsStoreProxy.xmlfile. It’s described hereNow the window you showed is opened by the
CurrentAppSimulator.RequestProductPurchaseAsyncline. It basically controls the return value of a Windows Runtime native method (which is very strange for me… I think it’s not intentional by Microsoft… something else should be done there), but if you let it returnS_OKthat basically is the case when the user paid for the in-App Purchase.When it returns nothing then with very high probability something in the
WindowsStoreProxy.xmlis wrong. I suggest you to create your ownWindowsStoreProxy.xmland read it with theCurrentAppSimulator.ReloadSimulatorAsyncmethod like this:var file = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync(@"TestingWindowsStoreProxy.xml"); await CurrentAppSimulator.ReloadSimulatorAsync(file);For me using the default one from
C:Users<username>AppDataLocalPackages<app package folder>LocalStateMicrosoftWindows StoreApiDataWindowsStoreProxy.xmldid not work, but a single change already solved the problem: I changed this part<LicenseInformation> <App> <IsActive>true</IsActive> <IsTrial>true</IsTrial> </App> </LicenseInformation>To this:
<LicenseInformation> <App> <IsActive>true</IsActive> <IsTrial>false</IsTrial> </App> </LicenseInformation>(So
IsTrialwas set to false...)Now at this point I also would like to mention that this was a little bit strange, since in in the default
WindowsStoreProxy.xmlthere was no Product defined for my In-App Purchase. So for my "RemoveAds" a properWindowsStoreProxy.xmlwould be something like this:<?xml version="1.0" encoding="utf-16" ?> <CurrentApp> <ListingInformation> <App> <AppId>00000000-0000-0000-0000-000000000000</AppId> <LinkUri>http://apps.microsoft.com/webpdp/app/00000000-0000-0000-0000-000000000000</LinkUri> <CurrentMarket>en-US</CurrentMarket> <AgeRating>3</AgeRating> <MarketData xml:lang="en-US"> <Name>AppName</Name> <Description>AppDescription</Description> <Price>1.00</Price> <CurrencySymbol>$</CurrencySymbol> <CurrencyCode>USD</CurrencyCode> </MarketData> </App> <Product ProductId="RemoveAds" LicenseDuration="1" ProductType="Durable"> <MarketData xml:lang="en-US"> <Name>RemoveAds</Name> <Price>1.00</Price> <CurrencySymbol>$</CurrencySymbol> <CurrencyCode>USD</CurrencyCode> </MarketData> </Product> </ListingInformation> <LicenseInformation> <App> <IsActive>true</IsActive> <IsTrial>false</IsTrial> </App> <Product ProductId="1"> <IsActive>true</IsActive> </Product> </LicenseInformation> <ConsumableInformation> <Product ProductId="RemoveAds" TransactionId="10000000-0000-0000-0000-000000000000" Status="Active" /> </ConsumableInformation> </CurrentApp>Another thing I would like to point out is that the
CurrentAppSimulator.RequestProductPurchaseAsyncwith two parameter is obsolete. Leave the true parameter out and you getPurchaseResultsinstance as the result, which contains the receipt in theReceiptXMLproperty.
这篇关于如何在 Windows 10 应用中实现应用内购买?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Windows 10 应用中实现应用内购买?
基础教程推荐
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
