Hi Arvind,
I've tried to go through the new docs and believe I've modified things to work as per the new Basic Authorization scheme for test mode access to SCIM. I'm now getting a 401 Unauthorized response from Gluu:
```
{
"error": "invalid_client",
"error_description": "Client authentication failed (e.g. unknown client, no client authentication included, or unsupported authentication method). The authorization server MAY return an HTTP 401 (Unauthorized) status code to indicate which HTTP authentication schemes are supported. If the client attempted to authenticate via the Authorization request header field, the authorization server MUST respond with an HTTP 401 (Unauthorized) status code, and include the WWW-Authenticate response header field matching the authentication scheme used by the client."
}
```
I've tried adding a brand new OpenID Connect client using exactly the same settings as instructed by the docs and I keep getting the above.
My new test client's name is SCIM-Client and its secret is authPassword, which I concatenate to SCIM-Client:authPassword and encode in Base64 to get U0NJTS1DbGllbnQ6YXV0aFBhc3N3b3Jk.
I'm sending a POST request like so:
```
POST https://____/oxauth/restv1/token HTTP/1.1
Host: ____
Content-Type: application/x-www-form-urlencoded
Authorization: Basic U0NJTS1DbGllbnQ6YXV0aFBhc3N3b3Jk
grant_type=client_credentials
```
Do you have any ideas on what I might be doing wrong?
Thanks,
Avi