I got a different response.
Original
curl https://httpbin.org/response-headers\?access_token\=faketoken\&token_type\=Bearer
{
"Content-Length": "128",
"Content-Type": "application/json",
"access_token": "faketoken",
"token_type": "Bearer"
}
go-httpbin
curl http://httpbin:9100/response-headers\?access_token\=faketoken\&token_type\=Bearer
{
"access_token": [
"faketoken"
],
"token_type": [
"Bearer"
]
}
I got a different response.