fawno / softether-api
SoftEther VPN Api for PHP
1.1.2
2023-05-24 00:23 UTC
Requires
- php: >=7.2
README
SoftEtherApi-PHP
SoftEther VPN Api for PHP
There are still some issues as i only use the c# project activly but not this port. Just open a ticket.
For C# examples please see: https://github.com/connLAN/SoftEtherApi
Installation using Composer
You can install this plugin into your application using composer:
composer require fawno/softether-api:@stable
How to translate the examples
The C# code
var connectResult = softEther.Connect(); var authResult = softEther.Authenticate(pw); var user = softEther.HubApi.CreateUser("testHub", "testUser", "userPw"); Console.WriteLine(user.Valid() ? "Success" : user.Error.ToString());
The corresponding PHP code
$connectResult = $softEther->Connect(); $authResult = $softEther->Authenticate(pw); $user = $softEther->HubApi->CreateUser("testHub", "testUser", "userPw"); echo $user->Valid() ? "Success" : $user->Error;