本文整理汇总了PHP中toba::servicio_web_rest方法的典型用法代码示例。如果您正苦于以下问题:PHP toba::servicio_web_rest方法的具体用法?PHP toba::servicio_web_rest怎么用?PHP toba::servicio_web_rest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类toba
的用法示例。
在下文中一共展示了toba::servicio_web_rest方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_cliente_rest
/**
* Ver http://docs.guzzlephp.org/en/latest/docs.html
* @return GuzzleHttp\Client
*/
protected function get_cliente_rest()
{
try {
$opciones = array();
$cliente = toba::servicio_web_rest('rest_arai_usuarios', $opciones);
return $cliente->guzzle();
} catch (toba_error $e) {
throw new toba_error_usuario("Hay un problema de configuracion del cliente REST. Por favor asegurese de configurarlo correctamente en el archivo cliente.ini.\n<br/><br/>Mensaje: " . $e->get_mensaje());
}
}
示例2: evt__version
function evt__version()
{
$url = toba_http::get_protocolo() . toba_http::get_nombre_servidor() . toba_rest::url_rest() . '/';
$opciones = array('to' => $url);
$cliente = toba::servicio_web_rest('rest_localhost', $opciones);
$resp = $cliente->guzzle()->get('personas');
if (!$resp->hasHeader('API-Version')) {
toba::notificacion()->agregar('El header correspondiente a la version de la API no existe');
return;
}
$version = $cliente->get_version_api($resp);
toba::notificacion()->agregar('Version de la API rest: ' . $version->__toString(), 'info');
}