Skip to content

Commit

Permalink
Fix authorization token Bearer prefix spelling in examples;
Browse files Browse the repository at this point in the history
the prefix should be spelled exactly as "Bearer", see
RFC 6750, section 2.1. Authorization Request Header Field
https://datatracker.ietf.org/doc/html/rfc6750#section-2.1
  • Loading branch information
srosenda committed Aug 6, 2024
1 parent aa1467e commit 17a29ab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions openid-4-verifiable-credential-issuance-1_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ Below is a non-normative example of a Credential Request for a Credential in [@I
POST /credential HTTP/1.1
Host: server.example.com
Content-Type: application/json
Authorization: BEARER czZCaGRSa3F0MzpnWDFmQmF0M2JW
Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW
{
"format":"mso_mdoc",
Expand All @@ -780,7 +780,7 @@ Below is a non-normative example of a Credential Request for two Credential inst
POST /credential HTTP/1.1
Host: server.example.com
Content-Type: application/json
Authorization: BEARER czZCaGRSa3F0MzpnWDFmQmF0M2JW
Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW
{
"credential_identifier": "CivilEngineeringDegree-2023",
Expand Down Expand Up @@ -1086,7 +1086,7 @@ The following is a non-normative example of a Deferred Credential Request:
POST /deferred_credential HTTP/1.1
Host: server.example.com
Content-Type: application/json
Authorization: BEARER czZCaGRSa3F0MzpnWDFmQmF0M2JW
Authorization: Bearer czZCaGRSa3F0MzpnWDFmQmF0M2JW
{
"transaction_id": "8xLOxBtZp8"
Expand Down

0 comments on commit 17a29ab

Please sign in to comment.