1. Go to this page and download the library: Download katmore/webhook library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
katmore / webhook example snippets
/*
* the 'Secret' field corresponding to the expected Webhook request
*/
$hubSecret = "My Secret";
/*
* obtain the messageBody; in this case, by reading from the php input stream
*/
$messageBody = file_get_contents('php://input');
/*
* obtain the 'hubSignature'; for example, from the value of the HTTP header 'HTTP_X_HUB_SIGNATURE'
*/
$hubSignature = $_SERVER['HTTP_X_HUB_SIGNATURE'];
/*
* obtain the 'gitHubEvent'; for example, from the value of the HTTP header 'HTTP_X_GITHUB_EVENT'
*/
$gitHubEvent = $_SERVER['HTTP_X_GITHUB_EVENT'];
/*
* instiantate a Webhook\Request object...
*/
$request = new \Webhook\Request($messageBody, $hubSignature, $gitHubEvent);
/*
* validate the request signature
*/
$request->validateSignature($hubSecret);
/*
* get the payload object...
* For more info on payloads for the various github events, see:
* https://developer.github.com/v3/activity/events/types
*/
$payload = $request->getPayload();
/*
* The payload object will be an instance of the
* \Webhook\Payload\PushEvent class
* if the github event was a 'Push Event'.
*
* The payload object will be an instance of the
* \Webhook\Payload\PingEvent class
* if the github event was a 'Ping Event'.
*
* The payload object will be an instance of the
* \Webhook\Payload\Event class
* for all other events.
*/
var_dump($payload);
/*
* the 'Secret' field corresponding to the expected Webhook request
*/
$hubSecret = "My Secret";
/*
* obtain the messageBody, hubSignature, and gitHubEvent
*/
$messageBody = file_get_contents('php://input');
$hubSignature = $_SERVER['HTTP_X_HUB_SIGNATURE'];
$gitHubEvent = $_SERVER['HTTP_X_GITHUB_EVENT'];
/*
* instiantate a 'Request' object...
*/
$request = new \Webhook\Request($messageBody, $hubSignature, $gitHubEvent);
try {
/*
* validate the request signature
*/
$request->validateSignature($hubSecret);
} catch(\Webhook\InvalidRequest $e) {
/*
* force a 500 HTTP response code upon encountering an 'InvalidRequest' exception,
*/
http_response_code(500);
echo "Invalid Request: ".$e->getMessage();
return;
}
/*
* continue to do more things...
*/
//$payload = $request->getPayload();
function onPushEvent(Payload\PushEvent $payload) {
/*
*
* --- place code in this function --
* --- that should execute when a Github 'push' event occurs --
*
*/
//
// place your custom code here
//
}
sh
php bin/add-endpoint.php
sh
php bin/add-endpoint.php --help
sh
cp web/endpoint-example.php web/my-repo-endpoint.php
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.