问题描述
Hello Everybody!
$
当我做一个请求这样:
Hello Everybody!
When I make a request this way:
var storeContext = StoreContext.GetDefault();
int rateRequestId = 2;
int rateRequestId = 2;
var request = await StoreRequestHelper.SendRequestAsync(storeContext,rateRequestId,string.Empty);
var request = await StoreRequestHelper.SendRequestAsync(storeContext, rateRequestId, string.Empty);
返回 来自HRESULT的异常:0x803F6107。 如何解决此问题?
提前致谢!
Returned Exception from HRESULT: 0x803F6107. How to fix this?
Thanks in advance!
推荐答案
来自此处的官方页面: https://docs.microsoft.com/en-us/windows/uwp/monetize/in-app-purchases-and-trials
From the official page here: https://docs.microsoft.com/en-us/windows/uwp/monetize/in-app-purchases-and-trials
您可以找到以下内容:
如果您没有将项目与商店中的应用相关联,StoreContext方法会设置其返回值的ExtendedError属性为错误代码值0x803F6107。此值表示商店对该应用程序没有任何了解。
If you do not associate your project with an app in the Store, the StoreContext methods set the ExtendedError property of their return values to the error code value 0x803F6107. This value indicates that the Store doesn't have any knowledge about the app.
您是否可以确保您的应用已经关联到商店?如果你的应用已经在网上商店,你能告诉我们商店有多长时间,它应该是> 3天。
Can you make sure that you app has already associate to Store? And if your app has already online on store, can you tell us how long has it been in the store, it should be >3days.
祝你好运,
Barry
这篇关于请求StoreRequestHelper.SendRequestAsync,从HRESULT返回异常:0x803F6107的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!