File "Webhook.php"

Full Path: /home/cananyalcin/public_html/core/lib/coinbase/coinbase-commerce/examples/Webhook/Webhook.php
File size: 824 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
require_once __DIR__ . "/vendor/autoload.php";

use CoinbaseCommerce\Webhook;

/**
 * To run this example please read README.md file
 * Past your Webhook Secret Key from Settings/Webhook section
 * Make sure you don't store your Secret Key in your source code!
 */
$secret = 'SECRET_KEY';
$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();
}