Setup
Installation of the service, basic methods and examples of their use.
Last updated
Was this helpful?
Installation of the service, basic methods and examples of their use.
Last updated
Was this helpful?
Sign in at pango-cloud.com.
Create a project and use a name for your project as a Public key. Private key is optional.
Use SDK where carrierId
equals given Public Key and backend url equals default SDK url or url provided by Pango team.
Install UnifiedSDK service
. Run the command from the directory where SDK service executable is located:
where:
-i "ServiceName"
- command to register UnifiedSDK service in the system with the name ServiceName
.
-d "c:\ProgramData\MyApp"
- configure path to the data folder.
-c "CommandPipeName"
- command pipe name.
-e "EventPipeName"
- event pipe name.
Additional information about command line argumets can be found there:
During this call:
Service executable file will be registered as windows service with specified name (ServiceName
).
Service will create the configuration file into the specified -d
folder "c:\ProgramData\MyApp"
.
Add UnifiedSDK.Core.dll
/ UnifiedSDK.Core.net48.dll
to your project.
Create UnifiedSDK.Core.SDK class instance with parameters: - Command pipe name. - Event pipe name. - Command pipe message format (XML or JSON). - [Optional] Microsoft.Extensions.Logging.ILogger<SDK> instance.
C#
C++
Initialize the SDK by sending an initialization request to the UnifiedSdkService with the required parameters:
- Backend URI: The URL of the backend API.
- Netfilter driver name: The name of the netfilter driver.
- AppVersion: The version of your application.
- [Optional] Reserve URIs: Optional reserve backend server URIs. By default: null.
- [Optional] MessageFormat: The format of the event messages from UnifiedSdkService (XML or JSON). By default: MessageFormat.JSON
.
- [Optional] Required events from UnifiedSdk service that will be sent by the event pipe. By default: ServiceEvents.Default (StateChanged | ErrorOccurred | TrafficChanged | ProcessExited)
.
C#
C++
An example response looks as follows:
More details about backend addresses configuration can be found there:
Pango Partner VPN Backend supports OAuth authentication with a partner's OAuth server as the primary authentication method.
Deploy and configure the OAuth service. Ensure that the service is publicly available on the Internet.
Configure the Partner Backend to use the OAuth service.
Implement client OAuth for your application.
Retrieve the access token in the client app. This token will be used to initialize and sign in.
AuthenticationMethod.Anonymous;
AuthenticationMethod.OAuth
AuthenticationMethod.Firebase
Custom Authentication
An example response looks as follows:
Custom Authentication allows you to integrate your existing authentication system with our cloud platform. Instead of using a predefined authentication method such as google
, facebook
, or oauth
, you can pass a custom string identifier to indicate your preferred authentication mechanism.
To implement Custom Authentication:
Replace the authentication method enum value with a string that uniquely identifies your authentication system, such as your company name or a specific identifier.
Obtain a token (TOKEN
) from your authentication system.
Pass this custom string and the token received from your authentication system as parameters to the LoginAsync
method.
Example login implementation using Custom Authentication:
To find detailed information about generating a unique Device Identifier, please refer to this page.
The DeviceId used for Backend requests has a default format of <carrier_id>_<device_id>
, which is then encoded to base64. The CarrierId and DeviceId are provided as parameters in the LoginRequest.
However, the LoginRequest includes two additional settings that allow you to control the generation of the DeviceId:
PreventDeviceIdEncode
- This setting indicates whether the DeviceId should be encoded to base64. If set to true, the DeviceId will be used as-is without base64 encoding.
PrependDeviceIdWithCarrierId
- This setting indicates whether the DeviceId should be prepended with the CarrierId. If set to true, the CarrierId will be added to the beginning of the DeviceId.
Follow these steps to update the Unified SDK:
(Optional) Stop the current SDK service.
Download the latest version of the Unified SDK.
Reinstall the SDK service by running the following command:
(Optional) Start the Unified SDK service.
To uninstall the SDK, run the following command:
App is responsible to install and remove the NetFilter driver on app install/uninstall.
SDK is responsible to start and stop NetFilter driver on SDK service Init and service stop.