xyzj91 / emqx-api
EMQX Management HTTP API
2.0.0
2022-04-29 05:29 UTC
Requires
- php: >=7.4
- ext-json: *
- guzzlehttp/guzzle: ^6.3|^7.0
- hyperf/di: ^2.0
- hyperf/guzzle: ^2.0
- hyperf/utils: ^2.0
- psr/container: ^1.0|^2.0
- psr/http-message: ^1.0
Requires (Dev)
- php-coveralls/php-coveralls: ^2.0
- phpunit/php-code-coverage: ^8.0
- phpunit/phpunit: ^9.0
- roave/security-advisories: dev-master
This package is not auto-updated.
Last update: 2025-03-29 19:28:04 UTC
README
EMQ X 管理组件资源开放接口 Hyperf版,组件基于https://github.com/kainonly/emqx-management-api.git修改而来
安装
composer require xyzj91/emqx-api
快速开始
创建客户端
$emqx = \EMQX\API\EMQXClient::create( 'http://localhost:8081/api/v4/', '<your appid>', '<your appsecret>' ); $response = $emqx->endpoints(); if ($response->isError()) { echo $response->getMsg(); return; } var_dump($response->result());
或者自定义 \GuzzleHttp\Client
$client = new \GuzzleHttp\Client([ 'base_uri' => 'http://localhost:8081/api/v4/', 'auth' => ['<your appid>', '<your appsecret>'], 'timeout' => 30.0, 'debug' => false, 'verify' => false, 'version' => 1.1 ]); $emqx = new \EMQX\API\EMQXClient($client); $response = $emqx->endpoints(); if ($response->isError()) { echo $response->getMsg(); return; } var_dump($response->result());
发布消息
$option = new \EMQX\API\Common\MqttPublishOption( ['notification'], 'hello' ); $option->setEncoding('plain'); $option->setQos(0); $option->setRetain(false); $response = $emqx->mqtt()->publish($option); if ($response->isError()) { echo $response->getMsg(); return; } var_dump($response->result());
SDK 遵循官网文档开发,https://docs.emqx.cn/broker/latest/advanced/http-api.html