Hello,
I'm struggling to find a solution incorporating an API into a custom connector, this API uses OAuth 2.0 Resource Owner Password Credentials, also known in Postman as the 'Password Credentials' OAuth 2.0 Grant Type.
See here for more information: https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth-ropc
The current method from the generic OAuth 2.0 - Generic Oauth 2 Identity Provider only allows for: Client id & Client secret.
This does not grant access to OAuth 2.0 APIs that use a 'Password Credentials' method, using 'Username' and 'Password'
Using the 'API Key' method will allow the developer to enter the bearer token into the 'Connection' string, but this does not work long term for expiring tokens and as far as I can tell there is no way to feasibly update the 'Connection' automatically every-time the token expires. In my case that could be every 24 hours.
Are Microsoft developers able to add Grant Type as a feature extension / improvement to only allowing the grant type of Client ID and Client Secret? Or is there a known workaround for this situation I am in?