Oara\Network\Publisher\AffiliNet::login PHP Method

login() public method

public login ( $credentials )
$credentials
    public function login($credentials)
    {
        $user = $credentials['user'];
        $password = $credentials['apipassword'];
        //Setting the client.
        $this->_client = new \SoapClient('https://api.affili.net/V2.0/Logon.svc?wsdl', array('compression' => SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP | SOAP_COMPRESSION_DEFLATE, 'soap_version' => SOAP_1_1));
        $this->_token = $this->_client->Logon(array('Username' => $user, 'Password' => $password, 'WebServiceType' => 'Publisher'));
        $this->_user = $user;
    }