我尝试将 nux.js 与 apollo 一起使用。我必须发送一个授权标头。在我的 nuxt.config.js 中试试这个:
apollo: {
clientConfigs: {
default: {
httpEndpoint: 'https://graphql.fauna.com/graphql',
headers: {
Authorization: 'Bearer xxxxxx'
}
}
}
}
但是尝试进行查询时出现此错误:
“GraphQL 错误:缺少授权标头”。
如何发送标头?
此致