PHP code example of zipline / egestor-sdk
1. Go to this page and download the library: Download zipline/egestor-sdk library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
zipline / egestor-sdk example snippets
$code = $_GET['code'];
$api = new Zipline\eGestor\API([
'clientId' => 'id_da_aplicacao',
'clientSecret' => 'segredo',
'redirectUri' => 'uri_cadastrada'
]);
$tokens = $api->authByCode($code);
$api = new Zipline\eGestor\API([
'clientId' => 'id_da_aplicacao',
'clientSecret' => 'segredo',
'redirectUri' => 'uri_cadastrada'
]);
$url = $api->getAuthUri();
$api = new Zipline\eGestor\API(['personalToken' => PERSONAL_TOKEN]);
$api = new Zipline\eGestor\API(['personalToken' => PERSONAL_TOKEN]);
$contatos = $api->get('contatos');
var_dump($contatos);
// Resposta:
// array(10) {
// ["total"] => int(1)
// ["per_page"]=> int(50)
// ["current_page"]=> int(1)
// ["last_page"]=> int(1)
// ["next_page_url"]=> NULL
// ["prev_page_url"]=> NULL
// ["from"]=> int(1)
// ["to"]=> int(50)
// ["data"]=> array(1) {
// [0]=> array(8) {
// ["codigo"] => int(1)
// ["nome"] => string(5) "Paulo"
// ["tipo"] => array(1) {
// [0]=> string(7) "cliente"
// }
// ["emails"] => array(1) {
// [0]=> string(17) "[email protected] "
// }
// ["fones"] => array(0) {}
// ["cidade"] => string(0) ""
// ["uf"] => string(0) ""
// ["tags"] => array(1) {
// [0]=> string(11) "cliente-vip"
// }
// }
// }
// ["next_page"]=> NULL
// }
$remaining = $api->getRemaining();//número que requests até atingir o limite
$body = $api->getBody();//corpo da resposta sem o parser
$api = new Zipline\eGestor\API(['personalToken' => PERSONAL_TOKEN]);
//Novo contato
$contato = $api->post("contatos", [
'nome' => 'Zipline',
'tipo' => ['fornecedor']
]);
$codContato = $contato['codigo'];
//Editando
$response = $api->put("contatos/$codContato", [
'nome' => 'eGestor',
]);
//Removendo
$response = $api->delete("contatos/$codContato");
//Pesquisando
$response = $api->get("contatos", [
'filtro' => 'eGestor',
]);
try {
$api = new Zipline\eGestor\API(['personalToken' => PERSONAL_TOKEN]);
$contatos = $api->get("contatos");
foreach($contato as $contatos['data']) {
echo $contato['codigo'] . ' - ' . $contato['nome'] . "\n";
}
} catch(Zipline\Exception\InvalidTokenException $e) {
echo "Não foi possível autenticar! Motivo:" . $e->getMessage() . "\n";
} catch(Exception $e) {
echo "Requisição não poder realizada! Motivo:" . $e->getMessage() . "\n";
}
try {
$api = new Zipline\eGestor\API([
'app_id' => MEU_APP_ID,
'app_secret' => MEU_APP_SECRET
'personalToken' => PERSONAL_TOKEN)
]);
$contatos = $api->get("contatos");
foreach($contato as $contatos['data']) {
echo $contato['codigo'] . ' - ' . $contato['nome'] . "\n";
}
} catch(Zipline\Exception\InvalidTokenException $e) {
echo "Não foi possível autenticar! Motivo:" . $e->getMessage() . "\n";
} catch(Exception $e) {
echo "Requisição não poder realizada! Motivo:" . $e->getMessage() . "\n";
}