我正在使用 trello api 和 mattzuba sdk 为 trello 创建 webhook,使用 post 方法成功创建了 webhook,但是有两个问题
- 在使用 GET 函数获取此 webhook 时,我没有找到任何结果。
- 在更改模型(我使用了板 id)时,它没有到达回调 URL,我想要一些回调 URL 的示例代码。
这是我的 Example.php 代码
$id = '558d029fd94e87c6230df746';
$callback_url = 'http://exampledomain.com/webhook.php';
$description = 'Webhook for board';
$webhook = array(
'idModel' => $id,
'callbackURL' => $callback_url,
'description' => $description,
);
$post = $trello2->post("tokens/$token/webhooks/?key=$key", array_filter($webhook));
print_r($post);
这是callbackurl页面webhook.php的代码
$json = file_get_contents('php://input');
$action = json_decode($json);
$sql = mysql_query("INSERT INTO trellowebhook (data) VALUES ('$action')",$con);
print_r($sql);