hi,all
Recently I am using collector and dashboard.
I have run:
uaac token client get admin --secret $2
uaac client add dashboard --access_token_validity 5000
--refresh_token_validity 10000 --secret secret --authorized_grant_types
"authorization_code,refresh_token" --authorities
"uaa.resource,tokens.read,tokens.write" --scope "openid,dashboard.user"
uaac client add dashboard_admin --access_token_validity 5000
--refresh_token_validity 10000 --secret somesecret --authorized_grant_types
"client_credentials" --authorities
"scim.read,scim.write,tokens.read,tokens.write,clients.read,clients.write,uaa.admin"
--scope "uaa.none"
uaac token client get dashboard_admin --secret somesecret
It seems all right. But when i run:
uaac group add openid
Igot the error:
CF::UAA::BadResponse: received invalid response content or type
Does anyone know how to slove this problem or any suggestions?
BTW:
I looked into the uaa dasebase,there are 3 tables:
List of relations
Schema | Name | Type | Owner
--------+----------------------+-------+-------
public | oauth_client_details | table | root
public | sec_audit | table | root
public | users | table | root
So I have a question: where the group information is stored?
Thanks you very much .