Apollo-link: credentials option not working in apollo-link-batch-http

Created on 20 Feb 2018  ·  3Comments  ·  Source: apollographql/apollo-link

Intended outcome: credentials option should work when using apollo-link-batch-http. If graphql is behind basic http auth for example, credentials: "same-origin" should propagate credentials.

Actual outcome: Credentials are not being propagate, getting a HTTP 401 response code.

How to reproduce the issue:

See repo https://github.com/Morantron/apollo-link-batch-http-credentials-bug

bug

All 3 comments

We just published a new version of apollo-link-batch-http. Can you confirm the issue is still present?

Awesome! It's fixed now on 1.1.0 version, thanks! :tada: :raised_hands:

This issue is still occurring (or had a regression) in [email protected]. Using configuration according to the docs:

  new BatchHttpLink({
    uri,
    credentials: 'same-origin',
    headers: {
      accept: 'application/json'
    }
  })

Neither the credentials value nor the headers object are respected.

Was this page helpful?
0 / 5 - 0 ratings