我正在开发laravel 5.1项目,它获得了一些外部API响应。它具有认证部分。从外部API,我收到401未经授权的异常。如果响应状态为401,我想调用一些方法。该怎么办。以下是步骤。
public function authenticateUser()
{
//get the user details from request
//pass it into host api and retrieve the response
//return if get 401
//if not check existence of user
//if exist create session
//if not create user and create session
//send authentication response to widget
}
答案 0 :(得分:0)
我有解决方案的人。
if($hostApiResponse->status() == 401){
//call the methods
}