1. Go to this page and download the library: Download claudsonm/ufs-apisistemas 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/ */
claudsonm / ufs-apisistemas example snippets
// Obtenção das client credentials para consumir serviços públicos
$credentials = \UFS\APISistemas::getClientCredentials(
env('UFS_KEY'),
env('UFS_SECRET'),
null,
true
);
// Inicialização com o Access Token obtido
$api = new \UFS\APISistemas($credentials['access_token'], true);
// Realização de uma requisição ao endpoint solicitado com um query parameter
$result = $api->get('departamentos', ['limit' => 10]);
// Altera o tipo de retorno para um objetivo ao invés de um array associativo
$result = $api->get('departamentos', ['limit' => 10, 'assoc_decode' => false]);
/**
* MÉTODOS DISPONÍVEIS
* Para acessar endpoints privados será necessário utilizar a classe com um
* access_token de usuário.
*/
// Obtendo os dados do usuário logado
$result = $api->self();
// Realização de uma requisição a um arquivo
$result = $api->arquivo(env('FILE_ID'), env('FILE_KEY'));
header('Content-Type: application/json');
echo json_encode($credentials + $result);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.