openapi-generator/samples/client/petstore/php/test.php

32 lines
1.0 KiB
PHP
Raw Normal View History

2015-04-06 10:03:15 +00:00
<?php
//require_once('vendor/autoload.php');
require_once('SwaggerClient-php/SwaggerClient.php');
2015-04-06 10:03:15 +00:00
// initialize the API client
//$api_client = new SwaggerClient\ApiClient('http://petstore.swagger.io/v2');
//$api_client->addDefaultHeader("test1", "value1");
2015-05-26 15:20:34 +00:00
// to enable logging
//SwaggerClient\Configuration::$debug = true;
2015-05-26 15:52:35 +00:00
//SwaggerClient\Configuration::$debug_file = '/var/tmp/php_debug.log';
2015-05-26 15:20:34 +00:00
$petId = 10005; // ID of pet that needs to be fetched
2015-04-06 10:03:15 +00:00
try {
//$pet_api = new SwaggerClient\PetAPI($api_client);
$pet_api = new SwaggerClient\PetAPI();
2015-04-06 10:03:15 +00:00
// return Pet (model)
$response = $pet_api->getPetById($petId);
var_dump($response);
// test upload file (exception)
$upload_response = $pet_api->uploadFile($petId, "test meta", NULL);
} catch (SwaggerClient\ApiException $e) {
2015-04-06 10:03:15 +00:00
echo 'Caught exception: ', $e->getMessage(), "\n";
echo 'HTTP response headers: ', $e->getResponseHeaders(), "\n";
echo 'HTTP response body: ', $e->getResponseBody(), "\n";
echo 'HTTP status code: ', $e->getCode(), "\n";
2015-04-06 10:03:15 +00:00
}
?>