Web Browser
1.7.8, 1.7.9, 1.7.10, 1.7.11
It works ok on 1.7.4
The headers configuration is honored on version 1.7.4 but not on any version >= 1.7.8.
GraphQLPlayground.init(root, {
"endpoint": "/graphql",
"subscriptionEndpoint": "/graphql",
"settings": {
"general.betaUpdates": false,
"editor.theme": "light",
"editor.cursorShape": "block",
"editor.reuseHeaders": true,
"tracing.hideTracingResponse": true,
"editor.fontSize": 14,
"editor.fontFamily": "'Source Code Pro', 'Consolas', 'Inconsolata', 'Droid Sans Mono', 'Monaco', monospace",
"request.credentials": "include"
},
"tabs": [
{
"endpoint": "/api/graphql",
"headers": {
"Authorization": "Token cc3dfa5c71101e47a713f8ce896e434f"
}
}
],
"canSaveConfig": false
})
Every settings value is respected; even every tab endpoint. But headers are completely ignored.
Setup Apollo Server with the Playground enabled as explained here and try to configure the tabs headers.
_Please provide a gif or image of the issue for a quicker response/fix._


Same here. I noticed that this only happens when settings/request.credentials parameter is set to include or same-origin, when it's set to omit the headers are included as they should.
Most helpful comment
Same here. I noticed that this only happens when
settings/request.credentialsparameter is set toincludeorsame-origin, when it's set toomitthe headers are included as they should.