2

我希望为我的 web api 实现 OAuth2 授权,并使用 Google 的文档作为模型。我试图实现的具体流程是“服务帐户”流程:here(据我了解,这也称为 JWT Bearer Token 流程?)。

如何在我的 MVC 应用程序中使用 Thinktecture 实现这一点?(或者有更好的选择吗?)

4

1 回答 1

1

您应该能够使用作为 v2 一部分提供的示例中的相同代码(https://github.com/thinktecture/Thinktecture.IdentityServer.v2/blob/master/samples/AdfsIntegrationSampleClient/AdfsIntegrationSampleClient/Program.cs #L123),所以:

        var client = new HttpClient { BaseAddress = new Uri(idsrvEndpoint) };

        var values = new Dictionary<string, string>
        {
            { OAuth2Constants.GrantType, "urn:ietf:params:oauth:grant-type:jwt-bearer" },
            { OAuth2Constants.Assertion, jwt },
            { OAuth2Constants.Scope, realm }
        };

        var form = new FormUrlEncodedContent(values);

        var response = client.PostAsync("", form).Result;
        response.EnsureSuccessStatusCode();

        var tokenResponse = response.Content.ReadAsStringAsync().Result;
        var json = JObject.Parse(tokenResponse);
        return json["access_token"].ToString();
于 2015-01-20T21:17:00.807 回答