gpt4 book ai didi

c# - Windows 应用商店应用中的应用内购买问题

转载 作者:可可西里 更新时间:2023-11-01 10:18:56 25 4
gpt4 key购买 nike

我已经使用应用内购买创建了一个应用,并使用 CurrentAppSimulator 对其进行了测试并且工作正常,但是当我为应用创建包时它失败了

这是我正在为其创建包的代码

public async System.Threading.Tasks.Task InAppInit()
{

var listing = await CurrentApp.LoadListingInformationAsync();

// Delux Unlock - Durable
var unlockFeatureDelux = listing.ProductListings.FirstOrDefault(p => p.Value.ProductId == "deluxe" && p.Value.ProductType == ProductType.Durable);
isDeluxPurchased = CurrentApp.LicenseInformation.ProductLicenses[unlockFeatureDelux.Value.ProductId].IsActive;
deluxProductID = unlockFeatureDelux.Value.ProductId;

// Standard Unlock - Durable
var unlockFeatureStandard = listing.ProductListings.FirstOrDefault(p => p.Value.ProductId == "standard" && p.Value.ProductType == ProductType.Durable);
isStarndardPurchased = CurrentApp.LicenseInformation.ProductLicenses[unlockFeatureStandard.Value.ProductId].IsActive;
standardProductID = unlockFeatureStandard.Value.ProductId;

}

我在 App.xaml.cs 中调用此方法 OnLaunched

最佳答案

根据我们的讨论,我会这样做:

  • LoadListingInformationAsync 方法使用互联网,如果用户没有互联网连接,则会抛出异常。所以我建议将所有内容包装到一个 try/ctach block 中
  • 如我们所见,ProductListings 不包含任何项目。我不知道这个列表是如何填充的,但只要你的应用程序不在商店中,当该列表为空时我不会感到惊讶(也许有人可以在这里提供帮助......但我没有找到任何关于这个的信息在文档中)。因此,为此我只是简单地检查一下您需要的功能是否在列表中……有了这个,您的包裹将通过您提到的测试,您可以上传它。如果通过商店安装包时列表也为空,则 IAP 设置有问题(但这与商店有关..)
  • 一般性评论:显然这段代码并不完整...您需要一些代码来购买 IAP,而这里我们只获得 ID...(但我认为您只是粘贴了相关部分。)

所有这些都在代码中:

 public async System.Threading.Tasks.Task InAppInit()
{
try
{
var listing = await CurrentApp.LoadListingInformationAsync();
if (listing.ProductListings.ContainsKey("deluxe"))
{
// Delux Unlock - Durable
var unlockFeatureDelux = listing.ProductListings.FirstOrDefault(p => p.Value.ProductId == "deluxe" && p.Value.ProductType == ProductType.Durable);
isDeluxPurchased = CurrentApp.LicenseInformation.ProductLicenses[unlockFeatureDelux.Value.ProductId].IsActive;
deluxProductID = unlockFeatureDelux.Value.ProductId;
}
else
{
//There is no deluxe IAP defined... so something with your IAP stuff is wrong...
}

if (listing.ProductListings.ContainsKey("standard"))
{
// Standard Unlock - Durable
var unlockFeatureStandard = listing.ProductListings.FirstOrDefault(p => p.Value.ProductId == "standard" && p.Value.ProductType == ProductType.Durable);
isStarndardPurchased = CurrentApp.LicenseInformation.ProductLicenses[unlockFeatureStandard.Value.ProductId].IsActive;
standardProductID = unlockFeatureStandard.Value.ProductId;
}
else
{
//same as for Delux
}
}
catch
{
//Show this on the UI...
}
}

关于c# - Windows 应用商店应用中的应用内购买问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34083630/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com