[Openid-specs-ab] Issue #990: UserInfo Error Response Example missing "Bearer" auth-scheme (openid/connect)
Brian Campbell
issues-reply at bitbucket.org
Mon Feb 8 13:01:07 UTC 2016
New issue 990: UserInfo Error Response Example missing "Bearer" auth-scheme
https://bitbucket.org/openid/connect/issues/990/userinfo-error-response-example-missing
Brian Campbell:
>From http://lists.openid.net/pipermail/openid-specs-ab/Week-of-Mon-20160208/005955.html
The example in http://openid.net/specs/openid-connect-core-1_0.html#UserInfoError is incorrect. It has:
```
#!text
HTTP/1.1 401 Unauthorized
WWW-Authenticate: error="invalid_token",
error_description="The Access Token expired"
```
but should be:
```
#!text
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Bearer error="invalid_token",
error_description="The Access Token expired"
```
More information about the Openid-specs-ab
mailing list