我使用的是flutter_graphql,他们有关于如何处理AuthLink的很好的文档,但它并不适合所有的身份验证方法。
例如,当使用存储httpPnly cookie的api时,该cookie不会存储,甚至不会随每个请求发送回
在阿波罗中,它会像这样解决:
const link = createHttpLink({
uri: '/graphql',
credentials: 'include'
});
const client = new ApolloClient({
cache: new InMemoryCache(),
link,
});
但我在flutter_graphql中找不到等效项