Skip to content

headerBasedAuth not updating the headers with new values #666

Open
@chrisharrison

Description

@chrisharrison

Do you want to request a feature or report a bug?

Bug

What is the current behavior?

Using the following config when creating a client:

const client = new AWSAppSyncClient({
  url: config.AppSync.aws_appsync_graphqlEndpoint as string,
  region: config.AppSync.aws_appsync_region,
  auth: {
    type: AUTH_TYPE.AMAZON_COGNITO_USER_POOLS,
    jwtToken: async () =>
      (await Auth.currentSession()).getIdToken().getJwtToken(),
  },
  disableOffline: true,
});
  disableOffline: true,
});

When a subscription is created a websocket is established. Under some circumstances (network disruption, VPN switching etc) a new websocket connection is established. But the authorization header is not updated. If the access token has since expired then Appsync will return:

[{errorType: "UnauthorizedException", message: "Token has expired."}]

What is the expected behavior?

The authorization header should use the token returned by the jwtToken function in the Appsync client config.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions