Auth 2.0 client credentials flow
I am having a problem accessing one of my REST resources which is protected using OAuth 2.0's client credentials flow (which is similar to OAuth 1.0's 2-legged flow). REST Console is requiring an Authorization URL which I believe is used for a classic 3-legged flow.
Using client credentials flow the client has a trust with the authorization server which does not prompt the user to login using their personal credentials. I should only need to specify the Version, Signature Method, Token URL, Key, Secret, Scope, and the Grant Type (client_credentials).
the current version does not support oAuth 2.0 authentication flow, though it can still make calls if you manually input keys and tokens.
full oAuth 2.0 flow will be supported in the next release.