本文整理汇总了PHP中CityApi::web_hooks_create方法的典型用法代码示例。如果您正苦于以下问题:PHP CityApi::web_hooks_create方法的具体用法?PHP CityApi::web_hooks_create怎么用?PHP CityApi::web_hooks_create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CityApi
的用法示例。
在下文中一共展示了CityApi::web_hooks_create方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: format_json
<title>Test Web Hooks Create</title>
</head>
<body>
<?php
require_once 'test-util.php';
require_once dirname(__FILE__) . '/../lib/ca-main.php';
echo '<div class="apitest">';
echo '<h1>web_hooks_create</h1>';
$ca = new CityApi();
$ca->debug = true;
$ca->json = true;
$callback_uri = 'https://gcconline.org/cityapi/wh-new-webhook.php';
$obj = 'User';
$event = 'create';
$results = $ca->web_hooks_create($callback_uri, $obj, $event);
echo "<h2>results:</h2>{$results}";
echo '<h2>var_dump results:</h2>';
var_dump($results);
echo '<h2>Formatted JSON results: </h2>';
echo '<pre>';
echo format_json($results);
echo '</pre>';
echo '<h2>HTTP Response Info</h2>';
echo '<pre>';
var_dump($ca->get_last_status_code());
var_dump($ca->get_last_response_start_line());
var_dump($ca->get_last_headers());
echo '</pre>';
echo '</div>';
?>