Skip to content
This repository has been archived by the owner on Mar 9, 2023. It is now read-only.

Commit

Permalink
Merge pull request CZ-NIC#197 from rebeckag/refresh-message_fix
Browse files Browse the repository at this point in the history
Client identifier is not required in RefreshAccessTokenRequest.
  • Loading branch information
Roland Hedberg committed Apr 13, 2016
2 parents 361962d + 77f4859 commit 92389a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oic/oauth2/message.py
Expand Up @@ -1003,8 +1003,8 @@ class RefreshAccessTokenRequest(Message):
c_param = {
"grant_type": SINGLE_REQUIRED_STRING,
"refresh_token": SINGLE_REQUIRED_STRING,
"client_id": SINGLE_REQUIRED_STRING,
"scope": OPTIONAL_LIST_OF_SP_SEP_STRINGS,
"client_id": SINGLE_OPTIONAL_STRING,
"client_secret": SINGLE_OPTIONAL_STRING
}
c_default = {"grant_type": "refresh_token"}
Expand Down

0 comments on commit 92389a1

Please sign in to comment.