You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When using the OAuth client credentials flow, the Configuration object allows me to specify the OAuthTokenUrl, OAuthClientId, and OAuthClientSecret, but there seems to be no way to specify any scope. Problem I'm facing is that I need to specify a scope to retrieve a token, so currently the request made in the OAuthAuthenticator.cs (GetToken() method) class returns a 400 response.
Describe the solution you'd like
An additional property in the Configuration class for specifying an OAuth scope
The GetToken() method in OAuthAuthenticator.cs adds a scope parameter when making the request (if a scope has been specified)
Describe alternatives you've considered
Current workaround I'm attempting is adding custom code to override the AccessToken token property.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When using the OAuth client credentials flow, the
Configuration
object allows me to specify the OAuthTokenUrl, OAuthClientId, and OAuthClientSecret, but there seems to be no way to specify any scope. Problem I'm facing is that I need to specify a scope to retrieve a token, so currently the request made in theOAuthAuthenticator.cs
(GetToken()
method) class returns a 400 response.Describe the solution you'd like
Configuration
class for specifying an OAuth scopeGetToken()
method inOAuthAuthenticator.cs
adds ascope
parameter when making the request (if a scope has been specified)Describe alternatives you've considered
Current workaround I'm attempting is adding custom code to override the
AccessToken
token property.The text was updated successfully, but these errors were encountered: