I'm using the pagseguro-sdk library. and is giving the following error in the request:
at Http->curlConnection('POST', 'https:///v2/checkout?
apparently the environment host needs to be passed. I checked the source code of the library and could not identify. In the example that has not been entered URL in the request:
\PagSeguro\Library::initialize();
\PagSeguro\Library::cmsVersion()->setName("Nome")->setRelease("1.0.0");
\PagSeguro\Library::moduleVersion()->setName("Nome")->setRelease("1.0.0");
/*
* To do a dynamic configuration of the library credentials you have to use the set methods
* from the static class \PagSeguro\Configuration\Configure.
*/
//For example, to configure the library dynamically:
\PagSeguro\Configuration\Configure::setEnvironment('production');//production or sandbox
\PagSeguro\Configuration\Configure::setAccountCredentials(
'your_pagseguro_email',
'your_pagseguro_token'
);
\PagSeguro\Configuration\Configure::setCharset('UTF-8');// UTF-8 or ISO-8859-1
\PagSeguro\Configuration\Configure::setLog(true, '/logpath/logFilename.log');
/**
* @todo To set the application credentials instead of the account credentials use:
* \PagSeguro\Configuration\Configure::setApplicationCredentials(
* 'appId',
* 'appKey'
* );
*/
try {
$sessionCode = \PagSeguro\Services\Session::create(
\PagSeguro\Configuration\Configure::getAccountCredentials()
);
echo "<strong>ID de sessão criado: </strong>{$sessionCode->getResult()}";
} catch (Exception $e) {
die($e->getMessage());
}
Does anyone know where I inform the host of the environment?