Browse Source

Add refresh_token to the list of grant types supported by Trakt

pull/1599/head
Kévin Chalet 4 years ago
parent
commit
3f5a9d1738
  1. 5
      src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationProviders.xml

5
src/OpenIddict.Client.WebIntegration/OpenIddictClientWebIntegrationProviders.xml

@ -154,7 +154,10 @@
<Environment Issuer="https://trakt.tv/">
<Configuration AuthorizationEndpoint="https://trakt.tv/oauth/authorize"
TokenEndpoint="https://api.trakt.tv/oauth/token"
UserinfoEndpoint="https://api.trakt.tv/users/me" />
UserinfoEndpoint="https://api.trakt.tv/users/me">
<GrantType Value="authorization_code" />
<GrantType Value="refresh_token" />
</Configuration>
</Environment>
</Provider>

Loading…
Cancel
Save