unifi-php-api/examples/list_ap_connected_users.php

49 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2017-09-05 11:48:35 +02:00
<?php
/**
* PHP API usage example
*
* contributed by: Art of WiFi
* description: example to pull connected user numbers for Access Points from the UniFi controller and output the results
* in raw HTML format
2017-09-05 11:48:35 +02:00
*/
/**
* using the composer autoloader
*/
require_once 'vendor/autoload.php';
2017-09-05 11:48:35 +02:00
/**
* include the config file (place your credentials etc there if not already present)
* see the config.template.php file for an example
*/
require_once 'config.php';
2017-09-05 11:48:35 +02:00
/**
* the short name of the site which you wish to query
*/
$site_id = '<enter your site id here>';
/**
* initialize the UniFi API connection class and log in to the controller and pull the requested data
*/
$unifi_connection = new UniFi_API\Client(
$controlleruser,
$controllerpassword,
$controllerurl,
$site_id,
$controllerversion
);
$set_debug_mode = $unifi_connection->set_debug($debug);
$loginresults = $unifi_connection->login();
$aps_array = $unifi_connection->list_aps();
2017-09-05 11:48:35 +02:00
/**
* output the results in HTML format
*/
header('Content-Type: text/html; charset=utf-8');
foreach ($aps_array as $ap) {
if ($ap->type === 'uap') {
echo '<b>AP name:</b>' . $ap->name . ' <b>model:</b>' . $ap->model . ' <b># connected clients:</b>' . $ap->num_sta . '<br>';
}
2017-09-05 11:48:35 +02:00
}