authing-java-sdk icon indicating copy to clipboard operation
authing-java-sdk copied to clipboard

Java SDK for Authing

Authing - Java / Kotlin

License

English | 简体中文

Introduction

You can use the Authing Java SDK to quickly integrate authentication capabilities for new or existing Back End applications

Documentation

Install

gradle project

Add to dependencies in build.gradle:

implementation "cn.authing:java-core:<LATEST_VERSION>"

You can check the latest version at https://search.maven.org/artifact/cn.authing/java-core.

maven project

Add to dependencies in pom.xml:

If you need to use this SDK in spring, since the spring relies on old version of OkHttp , you need to manually specify the version of OkHttp .

<dependency>
    <groupId>cn.authing</groupId>
    <artifactId>java-core</artifactId>
    <version><LATEST_VERSION></version>
</dependency>
<properties>
    <okhttp3.version>4.8.0</okhttp3.version>
</properties>

Questions

For questions and support please use the official forum. The issue list of this repo is exclusively for bug reports and feature requests.

Contribution

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push -u origin my-new-feature)
  • Create new Pull Request

Contribute

https://github.com/Authing/.github/blob/main/CONTRIBUTING.md#English

License

MIT

Copyright (c) 2019-present, Authing