seregazhuk\PinterestBot\Api\Request::autoLogin PHP Method

autoLogin() public method

Load cookies for this username and check if it was logged in.
public autoLogin ( string $username ) : boolean
$username string
return boolean
    public function autoLogin($username)
    {
        $this->httpClient->loadCookies($username);
        if (!$this->httpClient->cookie('_auth')) {
            return false;
        }
        $this->login();
        return true;
    }