我们在页面上有订阅按钮,当用户未获得授权时,它会显示弹出式身份验证表单,成功登录后用户会被重定向回页面并订阅其他用户提要。
我的代码看起来像这样
$feed_which_follows = $this->getFeed($this>_main_feed_names['user'],$who_follows);
$res = $feed_which_follows->followFeed($this->_main_feed_names['video'],$feed_to_follow);
但在调用followFeed
之后,我收到此错误:
Argument 3 passed to GuzzleHttp\Client::request() must be of the type array, string given, called in ContentStream/vendor/guzzlehttp/guzzle/src/Client.php on line 88 and defined
奇怪的是,如果用户被授权并且不需要将用户重定向回页面,那么一切都很有效。一旦涉及重定向,我们就会收到此错误。