Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/frozencure/twitch-client

A Twitch API client written in Kotlin. Compatible with Kotlin/JVM - and Android Studio projects.
https://github.com/frozencure/twitch-client

android android-library api dokka helix kotlin ktor ktor-client twitch twitch-api twitch-helix

Last synced: 8 days ago
JSON representation

A Twitch API client written in Kotlin. Compatible with Kotlin/JVM - and Android Studio projects.

Lists

README

        

# Kotlin Twitch API Library

# About

*Twitch-Client* is a modern Kotlin library that permits an easy and quick interaction with the Twitch services. Currently, the library can be used in *Java* or *Kotlin/JVM* projects and will be extended to other platforms in the future with the help of *Kotlin-Multiplatform*. The library is built on top of the [Ktor Client](https://ktor.io/clients/index.html) which is one of the best performing HTTP clients for Kotlin.

---
## Features

* All [Twitch Helix](https://dev.twitch.tv/docs/api) endpoints are implemented and tested
* Works with Kotlin/JVM and Java projects
* Works with Android Studio projects
* Authentication service included for an easy OAuth flow implementation
* Nullable types are used for all Twitch API response objects
* 100% unit test coverage
* All public methods and members are documented
* Documentation includes code samples for all endpoints
* Easy handling of multi-page Twitch collection responses

## Upcoming features

* Addition of [Twitch Helix Webhooks](https://dev.twitch.tv/docs/api/webhooks-guide)
* Support for Kotlin-Native, Javascript, iOS projects
* Addition of missing [Twitch v5 API](https://dev.twitch.tv/docs/v5) endpoints

# Getting started

## Installation

1. Add the Bintray maven repository to the `repositories` block:
- Gradle Kotlin DSL:
```
repositories {
mavenCentral()
maven {
setUrl("https://dl.bintray.com/frozencure/maven")
}
}
```
- Gradle Groovy DSL:
```
repositories {
mavenCentral()
maven {
url 'https://dl.bintray.com/frozencure/maven'
}
}
```
- Maven:
```

twitch-client-repo
https://dl.bintray.com/frozencure/maven

```

2. Add the library as a dependency:
* Gradle Kotlin DSL:
```
dependencies {
...
implementation("com.github.frozencure:twitch-client:0.0.1")
}
```
* Gradle Groovy DSL:
```
dependencies {
...
implementation 'com.github.frozencure:twitch-client:0.0.1'
}
```
* Maven:
```

com.github.frozencure
twitch-client
0.0.1
pom

```

---
## Performing the first request

* Using only a client ID (without OAuth)

In order to get a client ID for your Twitch extension follow [this guide](https://dev.twitch.tv/docs/api).

Example of performing a GET user request:
```
val credentials = AuthCredentials("")
val helixClient = HelixClient(credentials)
runBlocking {
println(helixClient.users.getUser().resource.toString())
}
```
* Using an OAuth token:

Most of the Twitch endpoints require the user/app to be authenticated using the OAuth 2.0 Standard.

More information about how to retrieve a user token and how the authentication works can be found in Authentication section or in the [Twitch API reference authentication section](https://dev.twitch.tv/docs/authentication).

Example of performing a GET user request:
```
val credentials = OauthCredentials("")
val helixClient = HelixClient(credentials)
runBlocking {
println(helixClient.users.getUser().resource.toString())
}
```

For more information please see the [documentation samples](https://frozencure.github.io/twitch-client/twitch-client/).

# Documentation

For a complete reference of all public classes and members visit [this page](https://frozencure.github.io/twitch-client/twitch-client/).

# Currently supported Helix endpoints

* Users
* GET users :heavy_check_mark:
* GET followers :heavy_check_mark:
* POST create user follow :heavy_check_mark:
* DELETE delete user follow :heavy_check_mark:
* PUT update user :heavy_check_mark:
* GET user extensions :heavy_check_mark:
* GET user active extensions :heavy_check_mark:
* PUT update user extensions :heavy_check_mark:
* Videos
* GET videos :heavy_check_mark:
* Clips
* GET clips :heavy_check_mark:
* POST create clip :heavy_check_mark:
* Webhooks
* GET subscriptions :heavy_check_mark:
* Games
* GET games :heavy_check_mark:
* GET top games :heavy_check_mark:
* GET search categories :heavy_check_mark:
* Analytics
* GET extension analytics :heavy_check_mark:
* GET game analytics :heavy_check_mark:
* Bits
* GET bits leaderboard :heavy_check_mark:
* GET cheermotes :x:
* Extensions
* GET extension transactions :heavy_check_mark:
* Entitlements
* POST Create entitlement grants upload URL :heavy_check_mark:
* GET code status :heavy_check_mark:
* POST redeem code :heavy_check_mark:
* GET drops entitlements :heavy_check_mark:
* Moderation
* POST check auto-mod status :heavy_check_mark:
* GET banned events :heavy_check_mark:
* GET banned users :heavy_check_mark:
* GET moderators :heavy_check_mark:
* GET moderator events :heavy_check_mark:
* Streams
* POST create stream marker :heavy_check_mark:
* GET streams :heavy_check_mark:
* GET stream markers :heavy_check_mark:
* GET stream key :heavy_check_mark:
* Subscriptions
* GET broadcaster subscriptions :heavy_check_mark:
* Stream tags
* GET all stream tags :heavy_check_mark:
* GET stream tags :heavy_check_mark:
* PUT replace stream tags :heavy_check_mark:
* Channels
* GET search channels :heavy_check_mark:
* POST start commercial :heavy_check_mark:
* GET hype train events :heavy_check_mark:
* PATCH modify channel information :heavy_check_mark:
* GET channel information :x:

---
## Supported webhooks
* Subscribe To/Unsubscribe From Events :x:
* Topic: User Follows :x:
* Topic: Stream Changed :x:
* Topic: User Changed :x:
* Topic: Topic: Extension Transaction Created :x:
* Topic: Moderator Change Events :x:
* Topic: Channel Ban Change Events :x:
* Topic: Topic: Subscription Events :x:

# Authentication

This library currently supports the *Implicit OAuth code flow* and *Credentials OAuth code flow*. It is advised to first go through the [Twitch API reference authentication section](https://dev.twitch.tv/docs/authentication) for a more in depth understanding.

## Getting an OAuth token for an user

The first step in the OAuth flow is to register the Twitch user with your app. This means that the user will have to authorize your app to access his private Twitch data or perform requests on his behalf.

Firstly, you will have to create an instance of the `OauthUserTokenRequestModel` class, which has the following fields:

* **clientId** -> your app's client ID
* **redirectURI** -> the URI where the user will be redirected after authorization, you can find it in the Twitch Developer console. It has to be the same as the one mentioned in your Twitch app settings, otherwise the authorization will not work
* **responseType** -> for the implicit OAuth code flow the only available option is "token"
* **scope** -> the scopes that the user will be asked to authorize
* **forceVerify** -> when true, (re)authorization will be required for every single request (optional)
* **state** -> variable used to mitigate CSFR attacks (optional)

Here is an example of a valid `OauthUserTokenRequestModel` instance:
```
val requestModel = OauthUserTokenRequestModel(
"nsfsgvu4k8h80iq0r7ya4zx1fasfa", // client-id
"http://localhost", // redirect-URI
"token", // response type
AuthScope.values().toList()// scopes
)
```

Next, we will use the `AuthService` to retrieve URL where the user will be directed to login. This can be done in the following way:
```
val authService = AuthService(ApacheEngineConfig())
runBlocking {
val response = authService.authorizeAppForUser(requestModel)
println(response)
}
```

The code snippet from above will return the following response with URL:
```
https://www.twitch.tv/login?client_id=&redirect_params=
```

Next, the user will authorize the app by accepting the requested permissions and logging in to Twitch. After the login completes successfully, he will be redirected to the `redirectURI` mentioned above:
```
http://localhost/#access_token=1abcgtpzp1iwrsiiqlr0tvfvkiawy3&scope=&token_type=bearer
```

Inside the redirect URL you will be able to find the OAuth user token.

From now on, you will be able to use this token to make request on the user behalf. For example:
```
val credentials = OAuthCredentials("", "")
val userService = UserService(credentials)
runBlocking {
println(userService.getUser("frozencure").resource.toString())
}
```

## OAuth token validation

When using OAuth tokens to perform requests, it is advised to periodically validate the token, to make sure that the user didn't revoke access of the app to his data. The Twitch team mentions that failure of doing this can lead revoking the developer API key or throttling of the application.

The `AuthService` also supports validation:
```
val authService = AuthService(ApacheEngineConfig())
runBlocking {
val tokenValidationModel = authService.validateUser("")
println(tokenValidationModel)
}
```
This will retrieve the following `TokenValidation` instance:

```
TokenValidation(
clientId=nyufzabdsf8h80iq0r7ya4zx1fsas7d, userLogin=frozencure,
scopes=[ANALYTICS_READ_EXTENSIONS, ANALYTICS_READ_GAMES, BITS_READ, CHANNEL_READ_SUBSCRIPTIONS, ...], userId=83035654,
expirationTime=5662299
)
```

## Revoking a token

To clean up previously obtained access tokens, the `AuthService` offers support for programatically revoking the OAuth tokens:
```
val authService = AuthService(ApacheEngineConfig())
runBlocking {
val response = authService.revokeToken(
OauthRevokeRequestModel("",
"")
)
println(response)
}
```

## Getting an app OAuth token

You can simply obtain an app access token by simply calling the `requestAppToken(requestModel: OauthAppTokenRequestModel)` function.
Firstly, you will have to create an instance of the `OauthAppTokenRequestModel` class, which has the following fields:

* **clientId** -> your app's client ID
* **clientSecret** -> your app's secret, can also be found in the Twitch Developer Console
* **scope** -> the scopes that the user will be asked to authorize
* **grantType** -> will always be `client_credentials`

Next, we'll use the `AuthService` to make the request to retrieve the token:

```
val requestModel = OauthAppTokenRequestModel(
"",
"",
AuthScope.values().toList()
)
val authService = AuthService(ApacheEngineConfig())
runBlocking {
val response = authService.requestAppToken(requestModel)
println(response)
}
```

# Dependencies

## Ktor client

- Built on top of the *Ktor* library
- Reasons for choosing *Ktor* over *Spring Boot*:
- More lightweight, less complexity
- Customizable, doesn't include all of the extra dependencies that are brought with Spring Boot
---

## Kotlinx.serializaiton

- All JSON operations are done using the *Kotlinx Serialization* library
- Reasons for choosing *Kotlinx* over other libraries:
- Made for Kotlin and not Java, makes use of some Kotlin only features (for example optionals)
- Is relatively fast (see [this benchmark](https://github.com/wizzardo/json-benchmarks))
- Even though it is currently pretty unstable, it will probably be the default Kotlin serialization library to use future language versions

# License

This project is available under the MIT license. See the LICENSE file for more information.