作者:lan1998_789 | 来源:互联网 | 2023-05-18 16:32
我想处理数据,这是由trello webhook发出的.有webhook帖子到网站,如site.com/tracker.php
在tracker.php中,我想将数据保存在数据库中.为此,我需要得到一些参数.
这是我收到的代码示例(https://trello.com/docs/gettingstarted/webhooks.html):
{
"action": {
"id":"51f9424bcd6e040f3c002412",
"idMemberCreator":"4fc78a59a885233f4b349bd9",
"data": {
"board": {
"name":"Trello Development",
"id":"4d5ea62fd76aa1136000000c"
},
"card": {
"idShort":1458,
"name":"Webhooks",
"id":"51a79e72dbb7e23c7c003778"
},
"voted":true
},
"type":"voteOnCard",
"date":"2013-07-31T16:58:51.949Z",
"memberCreator": {
"id":"4fc78a59a885233f4b349bd9",
"avatarHash":"2da34d23b5f1ac1a20e2a01157bfa9fe",
"fullName":"Doug Patti",
"initials":"DP",
"username":"doug"
}
},
"model": {
"id":"4d5ea62fd76aa1136000000c",
"name":"Trello Development",
"desc":"Trello board used by the Trello team to track work on Trello. How meta!\n\nThe development of the Trello API is being tracked at https://trello.com/api\n\nThe development of Trello Mobile applications is being tracked at https://trello.com/mobile",
"closed":false,
"idOrganization":"4e1452614e4b8698470000e0",
"pinned":true,
"url":"https://trello.com/b/nC8QJJoZ/trello-development",
"prefs": {
"permissionLevel":"public",
"voting":"public",
"comments":"public",
"invitations":"members",
"selfJoin":false,
"cardCovers":true,
"canBePublic":false,
"canBeOrg":false,
"canBePrivate":false,
"canInvite":true
},
"labelNames": {
"yellow":"Infrastructure",
"red":"Bug",
"purple":"Repro'd",
"orange":"Feature",
"green":"Mobile",
"blue":"Verified"
}
}
}
这是我当前的tracker.php文件:
id;
$card_id = $action->data->card->id;
var_dump($array);
我的问题:
$ _POST ["action"]是对的吗?或者我在[]里面需要什么?
我想让$ action-> data-> card-> id对吗?
有没有办法看到var_dump的结果?不知道如何看到webhook帖子的结果..
DocRattie..
9
我不得不用这个:
$json = file_get_contents('php://input');
$action = json_decode($json, true);
据我所知,json请求不会自动拆分为$ _POST.因此,您必须使用输入本身.
需要json_decode中的true参数来获取关联数组.没有它我只有一个空数组.
1> DocRattie..:
我不得不用这个:
$json = file_get_contents('php://input');
$action = json_decode($json, true);
据我所知,json请求不会自动拆分为$ _POST.因此,您必须使用输入本身.
需要json_decode中的true参数来获取关联数组.没有它我只有一个空数组.