eBay / ebay-oauth-java-client

eBay OAuth APIs client for Java
https://developer.ebay.com/api-docs/static/oauth-tokens.html
Apache License 2.0
48 stars 34 forks source link
authentication ebay ebay-api java

= eBay OAuth Client Library (Java) ifdef::env-github[] : outfilesuffix: .adoc :note-caption: :bulb: endif::[] :toc: :toclevels: 4

image:https://travis-ci.org/eBay/ebay-oauth-java-client.svg?branch=master["Build Status", link="https://travis-ci.org/eBay/ebay-oauth-java-client"]

image:https://codecov.io/gh/eBay/ebay-oauth-java-client/branch/master/graph/badge.svg["Code Coverage, link="https://codecov.io/gh/eBay/ebay-oauth-java-client"]

image:https://img.shields.io/github/license/eBay/ebay-oauth-java-client.svg["GitHub license",link="https://github.com/eBay/ebay-oauth-java-client/blob/master/LICENSE"]

eBay OAuth client library is a simple and easy-to-use library for integrating with eBay OAuth and designed to be used for OAuth 2.0 specification supported by eBay. There are multiple standard clients that can be used with eBay OAuth, such as Spring OAuth client. However, this library in addition to functioning as a simple eBay OAuth client, helps with additional features such as cached App tokens. There are also future enhancements planned to add id_token support, 'login with eBay' support etc.,

== What is OAuth 2.0 https://tools.ietf.org/html/rfc6749[OAuth 2.0] is the most widely used standard for authentication and authorization for API based access. The complete end to end documentation on how eBay OAuth functions is available at https://developer.ebay.com/api-docs/static/oauth-tokens.html[developer.ebay.com].

== Supported Languages This is created as a Maven based Java project and can be used as a dependency in a Java based application or other JVM based languages such as Groovy, Scala etc.,

== Installation Check the releases tab for the latest version. Add following to section of your pom.xml as given below

[source,xml]

com.ebay.auth ebay-oauth-java-client ${latest.version}

== Getting Started All interactions with this library can be performed using OAuth2Api oauth2Api = new OAuth2Api();

== Library Setup and getting started

  1. Ensure you have a config file in your source code of type http://yaml.org/[YAML]. Refer to ebay-config-sample.yaml.
  2. This file would hold all your application credentials such as AppId, DevId, and CertId. Refer to https://developer.ebay.com/api-docs/static/creating-edp-account.html[Creating eBay Developer Account] for details on how to get these credentials.
  3. Once the file is created, call CredentialUtil.load(new FileInputStream(<your-config-location>)); to load the credentials.
  4. It is recommended to load the credentials during startup time (initialization) to prevent runtime delays.
  5. Once the credentials are loaded, call any operation on OAuth2Api

== Types of Tokens There are mainly two types of tokens in usage.

=== Application Token An application token contains an application identity which is generated using client_credentials grant type. These application tokens are useful for interaction with application specific APIs such as usage statistics etc.,

=== User Token A user token (access token or refresh token) contains a user identity and the application's identity. This is usually generated using the authorization_code grant type or the refresh_token grant type.

== Supported Grant Types for OAuth All of the regular OAuth 2.0 specifications such as client_credentials, authorization_code, and refresh_token are all supported. Refer to https://developer.ebay.com/api-docs/static/oauth-tokens.html[eBay Developer Portal]

=== Grant Type: Client Credentials This grant type can be performed by simply using OAuth2Api.getApplicationToken(). Read more about this grant type at https://developer.ebay.com/api-docs/static/oauth-client-credentials-grant.html[oauth-client-credentials-grant]

=== Grant Type: Authorization Code This grant type can be performed by a two step process. Call OAuth2Api.generateUserAuthorizationUrl() to get the Authorization URL to redirect the user to. Once the user authenticates and approves the consent, the callback need to be captured by the redirect URL setup by the app and then call OAuth2Api.exchangeCodeForAccessToken() to get the refresh and access tokens.

Read more about this grant type at https://developer.ebay.com/api-docs/static/oauth-authorization-code-grant.html[oauth-authorization-code-grant] and https://developer.ebay.com/api-docs/static/oauth-auth-code-grant-request.html[Quick Reference]

=== Grant Type: Refresh Token This grant type can be performed by simply using OAuth2Api.getAccessToken(). Usually access tokens are short lived and if the access token is expired, the caller can use the refresh token to generate a new access token. Read more about it at https://developer.ebay.com/api-docs/static/oauth-auth-code-grant-request.html[Using a refresh token to update a user access token]

== Contribution Contributions in terms of patches, features, or comments are always welcome. Refer to link:CONTRIBUTING.adoc[CONTRIBUTING] for guidelines. Submit Github issues for any feature enhancements, bugs, or documentation problems as well as questions and comments.

== Additional Note: Using SnakeYaml in a safe manner With the latest release (1.16 and above), SafeConstructor is used for Yaml object creation for SnakeYaml. This ensures that only default Java objects would be supported via config. Please ensure there are no tagging of custom classes or any other class in the YAML config files. Refer to https://github.com/Thinkofname/snakeyaml/blob/master/src/main/java/org/yaml/snakeyaml/constructor/SafeConstructor.java[SafeConstructor] for further details.

== Libraries used

  1. okhttp
  2. gson
  3. SnakeYAML
  4. joda-time
  5. slf4j
  6. commons-lang
  7. json
  8. jackson-databind

== Developers and Contributors

  1. link:https://github.com/sengopal[@sengopal]
  2. link:https://github.com/tanjav[@tanjav]
  3. link:https://github.com/sonamrks[@sonamrks]
  4. link:https://github.com/LokeshRishi[@LokeshRishi]

== References

  1. https://developer.ebay.com/api-docs/static/oauth-token-types.html
  2. https://developer.ebay.com/api-docs/static/oauth-tokens.html
  3. https://developer.ebay.com/my/keys

== License Copyright (c) 2023 eBay Inc.

Use of this source code is governed by a Apache-2.0 license that can be found in the LICENSE file or at https://opensource.org/licenses/Apache-2.0.