Coinbase イベントを確認して取得するための Webhook を追加したいと考えています。
https://github.com/coinbase/coinbase-commerce-php
これが私のWebhookコントローラーです
public function verifyCoinbase() {
$secret = 'xxxxxxxxxxxxxxxxx';
$headerName = 'X-Cc-Webhook-Signature';
$headers = getallheaders();
$signraturHeader = isset($headers[$headerName]) ? $headers[$headerName] : null;
$payload = trim(file_get_contents('php://input'));
try {
$event = Webhook::buildEvent($payload, $signraturHeader, $secret);
http_response_code(200);
echo sprintf('Successully verified event with id %s and type %s.', $event->id, $event->type);
} catch (\Exception $exception) {
http_response_code(400);
echo 'Error occured. ' . $exception->getMessage();
}
}
テストの実行中にエラーメッセージが表示されます
hash_equals(): 既知の文字列が文字列であると予想されましたが、null が指定されました
これを3日間試しています。解決策を見つけることができれば本当にうれしいです。これを助けてください!.