HttpOnly cookie 未发送至 api

HttpOnly cookie not being sent to api

我正在使用 next.js 和 strapi。 我正在尝试在我的下一个 js front-end 和我的 strapi 应用程序之间设置一个 httpOnly cookie。

后端收到 cookie,但是当我尝试向后端发出请求时 - cookie 不存在。然而,当我使用邮递员时,cookie 集是存在的。

Strapi 应用程序:

  const t = await ctx.cookies.get('mytest') // prints undefined with next js but works with postman
  console.log(t);
  ctx.cookies.set('mytest', '123', {
    httpOnly: true,
    maxAge: 1000 * 60 * 60 * 24 * 365,
    secure: false,
  })

next.js 前端:

export default function Home(props: any) {

  async function onClick() {
    const options = {
      method: 'GET',
      'Access-Control-Allow-Credentials': true,
      withCredenitals: true
    }
    const test = await fetch('http://localhost:1337/endpoint', options as any)
    const res = await test.json()

  }

  return (
    <div>

      <div onClick={onClick}>
        Make a fetch to the api
      </div>
    </div>
  )
}

我尝试过的事情:

  1. 设置允许 cors 的特定域
  2. 将 api 调用移动到 getServerSideProps 函数
  3. 从 next.js api 路由进行 api 调用
  4. 我已经尝试从普通的 html 文件发出请求,但它仍然不起作用,所以我现在假设这不是下一个 js 问题,因为无论如何它都是客户端。这是无效的 HTML 代码 - 我收到 cors 错误,然后当我没有时 - 我仍然没有收到 cookie 显示
    const options = {
      method: 'get',
      mode: 'cors', // no-cors, *cors, same-origin
      cache: 'no-cache', // *default, no-cache, reload, force-cache, only-if-cached
      credentials: 'include', // include, *same-origin, omit
      withCredentials: true,
      headers: {
        'Content-Type': 'application/json',
        'Access-Control-Allow-Credentials': true,
        "Access-Control-Allow-Origin": "http://127.0.0.1:1337/myapi"
      },
    }

    const req = await fetch('http://127.0.0.1:1337/myapi', options)
    const res = await req.json()
  1. 更改了 headers 在后端发送回的方式
  console.log(t);
  ctx.cookies.set('mytest', '123', {
    httpOnly: true,
    maxAge: 1000 * 60 * 60 * 24 * 365,
    secure: false,
  })
  ctx.response.header = {
    ...ctx.response.header,
    'Access-Control-Allow-Credentials': true,
    'Access-Control-Allow-Origin': ctx.request.headers.origin,
    'Access-Control-Allow-Methods': 'GET,PUT,POST,DELETE,UPDATE,OPTIONS',
    'Access-Control-Allow-Headers': 'X-Requested-With, X-HTTP-Method-Override, Content-Type, Accept'
  }

运气不好。

谁能告诉我这是怎么回事?我已经搜索了几个小时,但似乎没有任何效果

我最终解决了这个问题 - 这个问题实际上是因为 cookie 没有保存到我的浏览器中。

有两个问题:

  1. 需要凭据,因为这是跨源请求,要发送 cookie,我必须明确说明
credentials: 'include',
  1. 在服务器上,我必须声明源的来源
ctx.set('Access-Control-Allow-Origin', ctx.request.headers.origin)

希望这对您有所帮助,您不要花 8 个小时随机控制台日志记录内容