用jsessionid反应本机提取

时间:2018-10-15 21:04:40

标签: api react-native fetch session-cookies

我正在尝试使用fetch在本机响应中调用api。 api调用需要在cookie中与jsessionid一起传递:我先进行一次调用以获取cookie,然后进行第二次调用以获取真实调用,但问题是第二次调用从未被接受。我发现使用:credentials: 'include',可以解决问题,但没有解决 这是我的代码:

fetch( url + '/api/call1', {
  credentials: 'include',      
})
.then((response) => response.json())
.then((responseJson) => {
  fetch( url + '/api/session?token=' + token, {
    credentials: 'include'
  })
  .then((resp) => resp.json())
  .then((respJson) => {
    console.log(respJson)
  })

})

如何在api服务器与我的本机获取代码之间建立会话cookie

0 个答案:

没有答案