私はASP.NET Core 1.0のFacebook認証ミドルウェアを使用してユーザープロファイルの画像を取得しようとしています。私はASP.NET Core Facebook認証ミドルウェアユーザーの画像
app.UseFacebookAuthentication(new FacebookOptions()
{
AppId = Configuration["Authentication:Facebook:AppId"],
AppSecret = Configuration["Authentication:Facebook:AppSecret"],
Scope = { "public_profile" },
Fields = { "picture" }
});
のavailbleユーザーの画像を作るためにこれらの構成を追加し、データ
var email = info.Principal.FindFirstValue(ClaimTypes.Email);
と
var userName = info.Principal.FindFirstValue(ClaimTypes.GivenName);
しかし、そこにあるように私は今、ユーザーの画像を取得することができますどのように取得するために管理していますいいえ申し立てのタイプそれのために?
この場合、どのように 'info'を定義しましたか? –