my client as below. when I invoke hydra public endpoint “/oauth2/sessions/logout”, I get fail info:
*Error: invalid_request*
- Description: The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed*
- Hint: Logout failed because query parameter post_logout_redirect_uri is set but id_token_hint is missing*
- Debug:*
I add id_token_hint=id_token, I get fail info:
*Error: invalid_request*
- Description: The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed*
- Hint: token contains an invalid number of segments*
- Debug:*
How can I do?
{
"client_id": "id_pkce",
"client_name": "",
"redirect_uris": [
"http://localhost:8080/auth/"
],
"grant_types": [
"authorization_code",
"refresh_token"
],
"response_types": [
"code",
"id_token"
],
"scope": "openid offline first_party",
"audience": [],
"owner": "",
"policy_uri": "",
"allowed_cors_origins": [
"http://localhost:8080"
],
"tos_uri": "",
"client_uri": "",
"logo_uri": "",
"contacts": [],
"client_secret_expires_at": 0,
"subject_type": "public",
"jwks": {},
"token_endpoint_auth_method": "none",
"userinfo_signed_response_alg": "none",
"created_at": "2020-10-16T04:57:04Z",
"updated_at": "2020-10-16T04:57:04Z",
"post_logout_redirect_uris": [
"http://localhost:8080"
],
"metadata": {}
}