See binance websocket documentation for details
- Start the local service, server.php example:
<?php
use EasyExchange\Factory;
use EasyExchange\Gate\Socket\Handle;
class Server
{
public function ws()
{
$config = [
'gate' => [
'response_type' => 'array',
'base_uri' => 'https://api.gateio.ws',
'app_key' => 'your app key',
'secret' => 'your secret',
'websocket' => [
'base_uri' => 'ws://api.gateio.ws/ws/v4/',
'listen_ip' => '127.0.0.1', // listen ip
'listen_port' => 2207, // listen port
'heartbeat_time' => 20, // Heartbeat detection time, seconds
'timer_time' => 3, // Scheduled task time,seconds
'max_size' => 100, // Data retention,1~1000,Data is stored by channel name
'data_time' => 1, // Time interval for getting data,seconds
],
],
];
$app = Factory::okex($config['okex']);
$app->websocket->server([], new Handle());
}
}
$tc = new Server();
$tc->ws();
-
Start script:
php server.php start
-
Local client use example
<?php
use EasyExchange\Factory;
class Test
{
public function t()
{
$config = [
'gate' => [
'response_type' => 'array',
'base_uri' => 'https://api.gateio.ws',
'app_key' => 'your app key',
'secret' => 'your secret',
'websocket' => [
'base_uri' => 'ws://api.gateio.ws/ws/v4/',
'listen_ip' => '127.0.0.1', // listen ip
'listen_port' => 2207, // listen port
'heartbeat_time' => 20, // Heartbeat detection time, seconds
'timer_time' => 3, // Scheduled task time,seconds
'max_size' => 100, // Data retention,1~1000,Data is stored by channel name
'data_time' => 1, // Time interval for getting data,seconds
],
],
];
$app = Factory::gate($config['gate']);
$params = [
'time' => time(),
'channel' => 'spot.trades',
'event' => 'subscribe', # "unsubscribe" for unsubscription
'payload' => [
'BTC_USDT',
'ETH_USDT',
],
];
// subscribe
$app->websocket->subscribe($params);
$params = [
'time' => time(),
'channel' => 'spot.trades',
'event' => 'unsubscribe',
'payload' => [
'BTC_USDT',
'ETH_USDT',
],
];
// unsubscribe
$app->websocket->unsubscribe($params);
// Get subscribed channels
$channels = $app->websocket->getSubChannel();
print_r($channels);
// 1. Obtain data according to the channel, if the channel is not transmitted, the data of all subscribed channels is obtained by default
$channels = ['spot.trades'];
$data = $app->websocket->getChannelData($channels);
print_r($data);
// 2. Use functions to process data
$app->websocket->getChannelData($channels, function ($data) {
print_r($data);
});
// 3. Use daemons and functions to process data
$app->websocket->getChannelData($channels, function ($data) {
print_r($data);
}, true);
}
}
$tc = new Test();
$tc->t();