Need to save all headers to database , when I using
in php, getting this..
array (
'x-trello-webhook' => '**********=',
'Content-Type' => 'application/json',
'Content-Length' => '6568',
'Host' => '******',
'Via' => '1.1 proxy3 (squid/3.5.12)',
'Cache-Control' => 'max-age=259200',
'Connection' => 'keep-alive',
)
Need to know how to get exact webhook info. base64_decode of x-trello-webhook does not worked.
The `x-trello-webhook` header will contain a signature of the actual webhook payload that you can use to confirm that the webhook itself is legitimate and comes from Trello.
The actual contents of the webhook itself will be as json in the POST body, not a header.
We've got some more details on how to check the signature for a webhook and what you can expect the body to look like here: https://developers.trello.com/page/webhooks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.