In logs I can see that you specified only `openid` `uma_authorization` and `uma_protection` scopes.
```
https://cyber.gluu.info/oxauth/seam/resource/restv1/oxauth/authorize?response_type=code&client_id=@!54B8.E44B.A17C.A9E8!0001!5BD7.7FEA!0008!0B2E.4449.49DD.DAB5&redirect_uri=https://cyber.oxd.info:8443/GluuServerTest/user/profile&scope=openid+uma_authorization+uma_protection&state=f0l0jrd1df604sp18vog54qh4a&nonce=rvqhpe8lpuhgce48d17deahg0c&prompt=login
```
If you wish to have other scopes then you should request those scopes, there are 2 ways how to do that:
1. set in `oxd-default-site-config.json`, then those scopes will be used for ALL requests if scope is not specified explicitly
2. set scopes directly in get_authorization_url command.
Sample of request with "profile" scope:
```
{m_command='{"command":"get_authorization_url","params":{"prompt":"login","scope":["openid", "profile", "uma_authorization", "uma_protection"],"oxd_id":"0586405e-a55d-4a90-ad39-61f14772a4f9","acr_values":null,"hd":null,"protection_access_token":null}}', m_leftString=''}
```
Right now it is
```
{m_command='{"command":"get_authorization_url","params":{"prompt":"login","scope":null,"oxd_id":"0586405e-a55d-4a90-ad39-61f14772a4f9","acr_values":null,"hd":null,"protection_access_token":null}}', m_leftString=''}
```
Thanks,
Yuriy