kllakk/php-wialon

PHP Wialon library

dev-master 2020-02-03 14:47 UTC

This package is auto-updated.

Last update: 2024-04-29 04:20:17 UTC


README

Wialon - allows to perform any Wialon Remote API requests according to documentation. cUrl required.

WialonError - simple convert Wialon error codes to text messages.

Usage

	include('wialon.php');
	$wialon_api = new Wialon();

	// old username and password login is deprecated, use token login
	$token = 'Your token here';
	$result = $wialon_api->login($token);
	$json = json_decode($result, true);
	if(!isset($json['error'])){
		echo $wialon_api->core_search_item('{"id":717359,"flags":0x1}');
		$wialon_api->logout();
	} else {
		echo WialonError::error($json['error']);
	}

Documentation

Wialon Remote Api documentation
New authorization way