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

Commit

Permalink
Client identifier is not required in RefreshAccessTokenRequest.
Browse files Browse the repository at this point in the history
Will only be included in the request body for client authentication.
  • Loading branch information
Rebecka Gulliksson committed Apr 12, 2016
1 parent 361962d commit 77f4859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oic/oauth2/message.py
Original file line number Diff line number Diff line change
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 77f4859

Please sign in to comment.