seregazhuk\PinterestBot\Bot::getClientInfo PHP Method

getClientInfo() public method

Returns client context from Pinterest response. By default info returns from the last Pinterest response. If there was no response before or the argument $reload is true, we make a dummy request to the main page to update client context.
public getClientInfo ( boolean $reload = false ) : array | null
$reload boolean
return array | null
    public function getClientInfo($reload = false)
    {
        $clientInfo = $this->providersContainer->getClientInfo();
        if (is_null($clientInfo) || $reload) {
            $this->auth->visitMainPage();
        }
        return $this->providersContainer->getClientInfo();
    }