The function checkResponse In class Weibo
protected function checkResponse (ResponseInterface $response, $data) { if (isset($data['error'])) { throw new IdentityProviderException($data['error_description'], $response->getStatusCode(), $response); } }
$data['error_description'] change to $data['error']
The function checkResponse In class Weibo
protected function checkResponse (ResponseInterface $response, $data) { if (isset($data['error'])) { throw new IdentityProviderException($data['error_description'], $response->getStatusCode(), $response); } }
$data['error_description'] change to $data['error']
tired!!!