Installation
Entrust Identity as a Service (IDaaS) Authentication API client provides integrations with the IDaaS Authentication API.
System Requirements
The following are the system requirements for the IDaaS Authentication API client:
- Java
- CSharp
- Python
- Java 8 or higher
- Maven / Gradle
- .NET Standard 2.0, .NET Standard 2.1, .NET Framework 4.8, .NET 8.0
- Python 3.7 or higher
Install the Authentication API Client
- Java
- CSharp
- Python
- Maven
- Gradle
<repositories>
<repository>
<id>idaas-releases</id>
<url>https://entrust.us.trustedauth.com/packages/client/java</url>
</repository>
</repositories>
repositories {
maven {
url "https://entrust.us.trustedauth.com/packages/client/java"
}
}
- Maven
- Gradle
<dependency>
<groupId>com.entrustdatacard</groupId>
<artifactId>intellitrust-auth-Authentication</artifactId>
<version>5.39</version>
</dependency>
implementation 'com.entrustdatacard:intellitrust-auth-Authentication:5.39'
By downloading the IDaaS Authentication library, you agree to the terms of the license. The open source softwares has been included with or as part of the IDaaS Authentication library can be found here.
<packageSources>
<add key="idaas-releases" value="https://entrust.us.trustedauth.com/packages/client/csharp/index.json" />
</packageSources>
<ItemGroup>
<PackageReference Include="com.entrustdatacard.intellitrust.auth" Version="5.39.0" />
</ItemGroup>
Alternatively, you can download the dlls from here. in the bin folder from in your project and install required dependencies according to the deps.json
file.
using com.entrustdatacard.intellitrust.auth.api;
using com.entrustdatacard.intellitrust.auth.Client;
using com.entrustdatacard.intellitrust.auth.model;
By downloading the IDaaS Authentication library, you agree to the terms of the license. The open source softwares has been included with or as part of the IDaaS Authentication library can be found here.
https://entrust.us.trustedauth.com/packages/client/python/simple/
python3 -m pip install --upgrade --extra-index-url https://entrust.us.trustedauth.com/packages/client/python/simple/ intellitrust-python-authentication==5.39
By downloading the IDaaS Authentication library, you agree to the terms of the license. The open source softwares has been included with or as part of the IDaaS Authentication library can be found here.