...
Table of Contents | ||
---|---|---|
|
Overview
The sample code is intended to demonstrate how you can utilise PHP to call the operations within API-NG and extract the desired output, it is very much a cut down sample and is not intended to be used in a production environment.
...
This documentation refers to the code available at https://github.com/betfair/API-NG-sample-code/tree/master/php.
Prerequisites
To run the sample code from the command line you must have a php5 cli installed along with the curl module enabled.
Debian linux Installation
In a Debian linux distro you can use the following commands to install the pre-requisites:
sudo apt-get update
sudo apt-get install php5-cli
sudo apt-get install php5-curl
Run the scripts
JSON-RPC →
php -f jsonrpc.php <appkey> <sessiontoken>
...
php -f rescript.php <appkey> <sessiontoken>
Code Snippets
Dealing with SSL in PHP
If you have errors relating to SSL certificate issues then you must do one of the following:
...
You will need to make use of the CURLOPT_CAINFO option, and point it to the Betfair PEM formatted certificate (which you can export from your browser). The details of exporting the cert and using this option are beyond the scope of this document but can be found elsewhere online.
Calling API-NG with JSON-RPC protocol
Method and params values need to be change based on the required service operation. You can call batch multiple service operations together and correlate the responses with value of the id field.
Code Block |
---|
function sportsApingRequest($appKey, $sessionToken, $operation, $params) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://api.betfair.com/exchange/betting/json-rpc/v1"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'X-Application: ' . $appKey, 'X-Authentication: ' . $sessionToken, 'Accept: application/json', 'Content-Type: application/json' )); $postData = '[{ "jsonrpc": "2.0", "method": "SportsAPING/v1.0/' . $operation . '", "params" :' . $params . ', "id": 1}]'; curl_setopt($ch, CURLOPT_POSTFIELDS, $postData); $response = json_decode(curl_exec($ch)); curl_close($ch); if (isset($response[0]->error)) { echo 'Call to api-ng failed: ' . "\n"; echo 'Response: ' . json_encode($response); exit(-1); } else { return $response; } } |
Calling API-NG with Rescript protocol
Code Block |
---|
function sportsApingRequest($appKey, $sessionToken, $operation, $params) { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "https://api.betfair.com/rest/v1/$operation/"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'X-Application: ' . $appKey, 'X-Authentication: ' . $sessionToken, 'Accept: application/json', 'Content-Type: application/json' )); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); $response = json_decode(curl_exec($ch)); $http_status = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_status == 200) { return $response; } else { echo 'Call to api-ng failed: ' . "\n"; echo 'Response: ' . json_encode($response); exit(-1); } } |
...