UniFi外部强制网络门户 - 移动WiFi在Auth上断开连接

时间:2017-04-26 19:36:40

标签: php android curl wifi captiveportal

我在UniFi控制器(v5.4.11)上创建了一个外部强制网络门户,并使用此库成功授权设备:

https://github.com/malle-pietje/UniFi-API-browser

但是,当我的PHP代码发送authorize_guest($ mac,$ duration)命令时,相关移动设备的WiFi实际上已断开连接。

就我所知,Android和iOS都会发生这种情况。

以下是我正在使用的代码:

 $controlleruser = $CFG->unifi_user;
$controllerpassword = $CFG->unifi_pass;
$controllerurl = 'https://'.$server.':'.$CFG->unifi_port;
$controllerversion = '5.4.11';
$cookietimeout = '3600';
$theme = 'bootstrap';
$debug = false;
$duration = $CFG->unifi_minutes;
$note = '';
$site_id = 'default';

require_once('class.unifi.php');

$unifidata      = new unifiapi($controlleruser, $controllerpassword, $controllerurl, $site_id, $controllerversion);
$set_debug_mode = $unifidata->set_debug($debug);
$loginresults   = $unifidata->login();
/**
 * To add note to a new device we need to do the following before authorizing the device:
 * - first block the device to get an entry in the user collection
 * - get the device id from the user collection
 * - add note to the device
 * - then unblock the device again
 */
$block_result   = $unifidata->block_sta($mac);
$getid_result   = $unifidata->stat_client($mac);
$user_id        = $getid_result[0]->_id;
$note_result    = $unifidata->set_sta_note($user_id, $note);
$unblock_result = $unifidata->unblock_sta($mac);
/**
 * then we authorize the device for the requested duration
 */
$auth_result = $unifidata->authorize_guest($mac, $duration);
/**
 * provide feedback in json format
 */
return $auth_result;

1 个答案:

答案 0 :(得分:0)

回购的创造者回应了我。有几行是不必要的。工作代码如下所示:

$unifidata      = new unifiapi($controlleruser, $controllerpassword, $controllerurl, $site_id, $controllerversion);
$set_debug_mode = $unifidata->set_debug($debug);
$loginresults   = $unifidata->login();

$auth_result = $unifidata->authorize_guest($mac, $duration);
return $auth_result;