前にこの問題を抱えている人がいました。Windows 10 UWPアプリケーション:GoogleWebAuthorizationBroker;ブラウザ例外の起動に失敗しました
:は、私はGoogleウェブマスターツールのAPIからデータを消費し、私はGoogleウェブ認証ブローカーを使用して認可しようとすると、私は次の例外に遭遇するのWindows 10でユニバーサルのWindowsプラットフォーム(UWP)アプリケーションを構築しています
のInnerException = {System.NotSupportedException:https://accounts.google.com/o/oauth2/v2/auth?access_type=offline&response_type=code&client_id=437110116900-jfsnbikhkj8l4aetubtkn52ggki45nm0.apps.googleusercontent.com&redirect_uri=http:%2F%2F127 "でブラウザを起動できませんでした....
コードスニペット:
string[] scopes = new string[] {
WebmastersService.Scope.Webmasters
};
using (var stream = new FileStream("client_secret.json",
FileMode.Open, FileAccess.Read))
{
UserCredential credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
scopes,
userName,
CancellationToken.None,
new FileDataStore(".", true)).Result;
}
0123事前にの
感謝:)
乾杯、 ポール
私がコントロールのリリースノートでは、この小さな宝石が見つかりました: を - UWP(ビルドされますが、実行時に動作しないことが知られている) が、私はこの方法で私の時間を無駄にしていようです。 –