gpt4 book ai didi

http - 凭据 'omit' 和 SET-COOKIE header

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:22:59 25 4
gpt4 key购买 nike

是否可以将 apollo 客户端配置为不在每个请求中发送 cookie(例如,凭据设置为 omit)并且仍然接受来自服务器的 SET-COOKIE header 上的 cookie ?

我的 httpLink 实现如下所示:

const httpLink = createHttpLink({
uri,
fetch: fetch,
credentials: 'omit'
});

但是省略会阻止响应更新 cookie。

最佳答案

您是否偶然使用了 ApolloBoostClient?在 stumbling upon this issue 之后,我遇到了与您相同的问题能够通过按照建议使用 ApolloClient 来解决它***:

export const client = new ApolloClient({
link: createHttpLink({
credentials: 'include',
uri: 'http://localhost:8080/api/graphql',
}),
cache: new InMemoryCache(),
});`

*** 除了像你一样,我使用了 'omit' 而不是 'include' 并且我使用的是 ScalaJS 而不是原生 JS

关于http - 凭据 'omit' 和 SET-COOKIE header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51025488/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com