A PHP API for interfacing with Junos Space through its REST API interface.
- Get All Managed Devices
$space = new JunosSpace("192.168.0.100", "username", "password123!");
print_r($space->getDevices());
- Execute GET REST call
$space = new JunosSpace("192.168.0.100", "username", "password123!");
print_r($space->get('/api/space/device-management/devices'));