Skip to content

Zoominfo API's Java Authentication Client

Notifications You must be signed in to change notification settings

Zoominfo/api-auth-java-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Zoominfo API Auth Java Client

Maven Dependency

<dependency>
    <groupId>com.zoominfo</groupId>
    <artifactId>api-auth-java-client</artifactId>
    <version>1.0</version>
</dependency>

Get access token using client id and private key

AuthClient authClient = new AuthClient("username", "clientId", "privateKey");
String accessToken = authClient.getAccessToken();

Get access token using username and password

AuthClient authClient = new AuthClient("username", "password");
String accessToken = authClient.getAccessToken();

About

Zoominfo API's Java Authentication Client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages