$response = $client->request('GET', self::$jumpUrl, [
'cookies' => $cookieJar,
'query' => [
'tochannelid' => $channelId
],
'allow_redirects' => [
'max' => 5, // allow at most 10 redirects.
'track_redirects' => true
],
'debug' => true
]);
$lastRedirectArr = $response->getHeaders()['X-Guzzle-Redirect-History'];
list($code, $msg) = $this->getCookie($lastRedirectArr[1]);
$client = new Client();
$res = $client->request('GET', $url);
$header = $res->getHeaders();
通过主账号登录跳转获取子账号的 cookie,实现子账号登录。
现在问题是通过主账号,获取不到 302 后的 cookie
打开 debug,是存在正确 cookie 的 我获取最后的跳转链接,然后再次请求,获取到的 cookie 是错误的。
现在不知道问题哪里
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.