jambtc / thingsboard-php-sdk
该软件包最新版本(dev-main)的许可证信息不可用。
ThingsBoard PHP SDK
dev-main
2024-07-11 16:17 UTC
Requires
- php: >=8.0
- guzzlehttp/guzzle: ^7.4.5
This package is auto-updated.
Last update: 2024-09-11 16:39:54 UTC
README
用于与ThingsBoard REST API通信的PHP SDK
使用方法
/// Inizializza AuthService con il base URL $authService = new AuthService('https://thingsboard.example.com'); // Autenticazione $authService->authenticate('username', 'password'); // Inizializza il controller dei dispositivi $deviceController = new DeviceController($authService); // Ottieni un dispositivo $device = $deviceController->getDevice('deviceId');