私は暗黙のフローを持つクライアント構成を持っています。IdentityServer3の暗黙的なフローではなく、暗黙的なjavascript
new Client
{
Enabled = true,
ClientId = "implicit",
ClientName = "Implicit Grant Flow",
Flow = Flows.Implicit,
RedirectUris = new List<string>
{
"http://localhost:24678/callback.html",
},
AllowedScopes = new List<string>
{
Constants.StandardScopes.OpenId
}
}
javascript clintsをIdentityServer3ログインページにリダイレクトしたいと思います。
var url = "http://localhost:4751/connect/authorize"
+ "?client_id=" + ("implicit")
+ "&redirect_uri=" + encodeURIComponent("http://localhost:24678/callback.html")
+ "&response_type=" + ("token")
+ "&response_mode=" + ("form_post")
+ "&scope=" + ("openid");
しかし、エラー発生しました:
HTTPエラー405.0 - 方法
その答えはおそらく明らかになるでしょう。 – GlennSills