jambtc / thingsboard-php-sdk
There is no license information available for the latest version (dev-main) of this package.
SDK PHP per ThingsBoard
dev-main
2025-01-30 09:59 UTC
Requires
- php: >=8.0
- guzzlehttp/guzzle: ^7.4.5
- guzzlehttp/psr7: ^2.7
Requires (Dev)
- phpunit/phpunit: ^11.3
This package is auto-updated.
Last update: 2025-04-29 01:27:51 UTC
README
PHP SDK for communicating with the ThingsBoard REST API
How to use
/// 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'); // Ottieni la Lista dei Dispositivi; $devices = $deviceController->getAllDevices(); // crea un tenant $tenantController = new TenantController($authService); $tenantData = [ "title" => "title", "name" => "description", "region" => "default", "tenantProfileId" => [ "id" => "tenant_profile_uuid", "entityType" => "TENANT_PROFILE" ], ]; $tenant = $tenantController->createTenant($tenantData); // crea un utente $userController = new UserController($authService); $userData = [ "tenantId" => [ "id" => "tenant_uuid", "entityType" => "TENANT" ], "email" => "example@mail.com", "name" => "example@mail.com", "authority" => "TENANT_ADMIN", "firstName" => "first Name", "lastName" => "last Name", ]; $user = $userController->createTenant($userData);