Thanks. Here is a Json that I used, for your convenience:
```
{
"redirect_uris": ["http://ocalhost:8080/login/oauth2/code/gluu"],
"post_logout_redirect_uris": ["http://localhost:8080/logout"],
"rpt_as_jwt": false,
"access_token_as_jwt": true,
"access_token_signing_alg": "RS256",
"response_types": [
"code",
"token",
"id_token"
],
"grant_types": [
"authorization_code",
"refresh_token",
"client_credentials",
"password"
],
"application_type": "web",
"client_name": "Dynamically registered test client",
"subject_type": "public",
"token_endpoint_auth_method": "client_secret_basic",
"id_token_signed_response_alg": "none",
"default_max_age": "300",
"require_auth_time": false,
"frontchannel_logout_session_required": "false",
"scope": "openid user_name profile email"
}
```
I used curl to perform the request, like so:
```
curl -v -X POST https://gluu-local/oxauth/restv1/register -H "Content-Type: application/json" -H "Accept: application/json" -d @/path/to/the/above/data.json
```