lamoni / junos-space
A PHP API for interacting through REST API with Juniper's Junos Space Network Management Platform
v1.0.1
2015-06-25 03:47 UTC
Requires
- php: >= 5.4.16
- lamoni/restlyte: v1.0.0
This package is not auto-updated.
Last update: 2024-10-26 16:57:28 UTC
README
A PHP API for interfacing with Junos Space through its REST API interface.
Examples
- 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'));