SDK
Pliance offers a comprehensive SDK that makes it easy for delelopers to interact with our services. Packages are conviniently made available for popular languages. Please check our public GitHub repo for open source code and samples.
Install a Pliance library
- Node.js
- Python
- Java
- .Net
Connect to Pliance API
Our client handles the connection and the authentication to the Pliance servers.
- Node.js
- Python
- Java
- .Net
import { ClientFactory, IPlianceClient } from '@pliance/pliance.js.sdk';
let factory = new ClientFactory('<SECRET>', '<CUSTOMER>', 'https://<CUSTOMER>.pliance.io/', null);
let client = factory.create('<USERNAME>', '<USERID>');
from pliance_py_sdk import ClientFactory, ApiException
factory = ClientFactory('<SECRET>', '<CUSTOMER>', 'https://<CUSTOMER>.pliance.io/')
client = factory.create('<USERNAME>', '<USERID>')
import pliance.sdk.IPlianceClient;
import pliance.sdk.PlianceClientFactory;
PlianceClientFactory factory = new PlianceClientFactory("<SECRET>", "<CUSTOMER>", "https://<CUSTOMER>.pliance.io/", null);
PlianceClient client = _factory.create("<USERNAME>", "<USERID>");
using Pliance.SDK.Contract;
using Pliance.SDK;
var factory = new PlianceClientFactory(
secret: "<SECRET>",
issuer: "<CUSTOMER>",
url: "https://<CUSTOMER>.pliance.io/",
certificate: certificate
);
var client = factory.Create("<USERNAME>", "<USERID>");