-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): include client doc in documentation
- Loading branch information
1 parent
3cfe103
commit cb2ca47
Showing
12 changed files
with
1,624 additions
and
464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,196 @@ | ||
[![badge](https://img.shields.io/twitter/follow/api_video?style=social)](https://twitter.com/intent/follow?screen_name=api_video) [![badge](https://img.shields.io/github/stars/apivideo/api.video-android-uploader?style=social)](https://github.com/apivideo/api.video-android-uploader) [![badge](https://img.shields.io/discourse/topics?server=https%3A%2F%2Fcommunity.api.video)](https://community.api.video) | ||
![](https://github.com/apivideo/.github/blob/main/assets/apivideo_banner.png) | ||
<h1 align="center">api.video Android </h1> | ||
|
||
[api.video](https://api.video) is the video infrastructure for product builders. Lightning fast video APIs for integrating, scaling, and managing on-demand & low latency live streaming features in your app. | ||
|
||
# Table of contents | ||
|
||
- [Project description](https://github.com/apivideo/api.video-android-uploader/blob/main/#project-description) | ||
- [Getting started](https://github.com/apivideo/api.video-android-uploader/blob/main/#getting-started) | ||
- [Requirements](https://github.com/apivideo/api.video-android-uploader/blob/main/#requirements) | ||
- [Installation](https://github.com/apivideo/api.video-android-uploader/blob/main/#installation) | ||
- [Maven users](https://github.com/apivideo/api.video-android-uploader/blob/main/#maven-users) | ||
- [Gradle users](https://github.com/apivideo/api.video-android-uploader/blob/main/#gradle-users) | ||
- [Others](https://github.com/apivideo/api.video-android-uploader/blob/main/#others) | ||
- [Code sample](https://github.com/apivideo/api.video-android-uploader/blob/main/#code-sample) | ||
- [Upload options](https://github.com/apivideo/api.video-android-uploader/blob/main/#upload-options) | ||
- [Permissions](https://github.com/apivideo/api.video-android-uploader/blob/main/#permissions) | ||
- [Documentation](https://github.com/apivideo/api.video-android-uploader/blob/main/#documentation) | ||
- [API Endpoints](https://github.com/apivideo/api.video-android-uploader/blob/main/#api-endpoints) | ||
- [VideosApi](https://github.com/apivideo/api.video-android-uploader/blob/main/#videosapi) | ||
- [Models](https://github.com/apivideo/api.video-android-uploader/blob/main/#models) | ||
- [Authorization](https://github.com/apivideo/api.video-android-uploader/blob/main/#documentation-for-authorization) | ||
- [API key](https://github.com/apivideo/api.video-android-uploader/blob/main/#api-key) | ||
- [Public endpoints](https://github.com/apivideo/api.video-android-uploader/blob/main/#public-endpoints) | ||
- [Recommendation](https://github.com/apivideo/api.video-android-uploader/blob/main/#recommendation) | ||
- [Have you gotten use from this API client?](https://github.com/apivideo/api.video-android-uploader/blob/main/#have-you-gotten-use-from-this-api-client-) | ||
- [Contribution](https://github.com/apivideo/api.video-android-uploader/blob/main/#contribution) | ||
|
||
# Project description | ||
|
||
api.video's Android streamlines the coding process. Chunking files is handled for you, as is pagination and refreshing your tokens. | ||
|
||
# Getting started | ||
|
||
## Requirements | ||
|
||
Building the API client library requires: | ||
1. Java 1.8+ | ||
2. Maven/Gradle | ||
|
||
## Installation | ||
|
||
### Maven users | ||
|
||
Add this dependency to your project's POM: | ||
|
||
```xml | ||
<dependency> | ||
<groupId>video.api</groupId> | ||
<artifactId>android-video-uploader</artifactId> | ||
<version>1.3.1</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
``` | ||
|
||
### Gradle users | ||
|
||
Add this dependency to your project's build file: | ||
|
||
```groovy | ||
implementation "video.api:android-video-uploader:1.3.1" | ||
``` | ||
|
||
### Others | ||
|
||
At first generate the JAR by executing: | ||
|
||
```shell | ||
mvn clean package | ||
``` | ||
|
||
Then manually install the following JARs: | ||
|
||
* `target/android-video-uploader-1.3.1.jar` | ||
* `target/lib/*.jar` | ||
|
||
## Code sample | ||
|
||
Please follow the [installation](https://github.com/apivideo/api.video-android-uploader/blob/main/#installation) instruction and execute the following Kotlin code: | ||
|
||
```kotlin | ||
// If you want to upload a video with an upload token (uploadWithUploadToken): | ||
VideosApiStore.initialize() | ||
// if you rather like to use the sandbox environment: | ||
// VideosApiStore.initialize(environment = Environment.SANDBOX) | ||
// If you rather like to upload with your "YOUR_API_KEY" (upload) | ||
// VideosApiStore.initialize("YOUR_API_KEY", Environment.PRODUCTION) | ||
// if you rather like to use the sandbox environment: | ||
// VideosApiStore.initialize("YOU_SANDBOX_API_KEY", Environment.SANDBOX) | ||
|
||
|
||
val myVideoFile = File("my-video.mp4") | ||
|
||
val workManager = WorkManager.getInstance(context) // WorkManager comes from package "androidx.work:work-runtime" | ||
workManager.uploadWithUploadToken("MY_UPLOAD_TOKEN", myVideoFile) // Dispatch the upload with the WorkManager | ||
// if your rather like to use your API key: | ||
// workManager.upload("MY_VIDEO_ID", myVideoFile) | ||
``` | ||
|
||
### Example | ||
|
||
Examples that demonstrate how to use the API is provided in folder `examples/`. | ||
|
||
## Upload methods | ||
|
||
To upload a video, you have 3 differents methods: | ||
* `WorkManager`: preferred method: Upload with Android WorkManager API. It supports progress notifications. Directly use, WorkManager extensions. See [example](https://github.com/apivideo/api.video-android-uploader/blob/main/examples/workmanager) for more details. | ||
* `UploadService`: Upload with an Android Service. It supports progress notifications. You have to extend the `UploadService` and register it in your `AndroidManifest.xml`. See [example](https://github.com/apivideo/api.video-android-uploader/blob/main/examples/service) for more details. | ||
* Direct call with `ApiClient`: Do not call API from the main thread, otherwise you will get a android.os.NetworkOnMainThreadException. Dispatch API calls with Thread, Executors or Kotlin coroutine to avoid this. | ||
|
||
## Permissions | ||
|
||
You have to add the following permissions in your `AndroidManifest.xml`: | ||
|
||
```xml | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<!-- Application requires android.permission.READ_EXTERNAL_STORAGE to upload videos` --> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
``` | ||
|
||
Your application also has to dynamically request the `android.permission.READ_EXTERNAL_STORAGE` permission to upload videos. | ||
|
||
# Documentation | ||
|
||
## API Endpoints | ||
|
||
All URIs are relative to *https://ws.api.video* | ||
|
||
|
||
### VideosApi | ||
|
||
|
||
#### Retrieve an instance of VideosApi: | ||
```kotlin | ||
val videosApi = VideosApi("YOUR_API_KEY", Environment.PRODUCTION) | ||
``` | ||
|
||
|
||
|
||
#### Endpoints | ||
|
||
Method | HTTP request | Description | ||
------------- | ------------- | ------------- | ||
[**upload**](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/VideosApi.md#upload) | **POST** /videos/{videoId}/source | Upload a video | ||
[**uploadWithUploadToken**](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/VideosApi.md#uploadWithUploadToken) | **POST** /upload | Upload with an delegated upload token | ||
|
||
|
||
|
||
## Documentation for Models | ||
|
||
- [AccessToken](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/AccessToken.md) | ||
- [AdditionalBadRequestErrors](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/AdditionalBadRequestErrors.md) | ||
- [AuthenticatePayload](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/AuthenticatePayload.md) | ||
- [BadRequest](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/BadRequest.md) | ||
- [Metadata](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/Metadata.md) | ||
- [NotFound](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/NotFound.md) | ||
- [RefreshTokenPayload](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/RefreshTokenPayload.md) | ||
- [Video](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/Video.md) | ||
- [VideoAssets](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/VideoAssets.md) | ||
- [VideoSource](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/VideoSource.md) | ||
- [VideoSourceLiveStream](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/VideoSourceLiveStream.md) | ||
- [VideoSourceLiveStreamLink](https://github.com/apivideo/api.video-android-uploader/blob/main/docs/VideoSourceLiveStreamLink.md) | ||
|
||
|
||
## Documentation for Authorization | ||
|
||
### API key | ||
|
||
Most endpoints required to be authenticated using the API key mechanism described in our [documentation](https://docs.api.video/reference#authentication). | ||
The access token generation mechanism is automatically handled by the client. All you have to do is provide an API key when instantiating the `ApiClient`: | ||
```kotlin | ||
val videosApi = VideosApi("YOUR_API_KEY", Environment.PRODUCTION) | ||
``` | ||
|
||
### Public endpoints | ||
|
||
Some endpoints don't require authentication. These one can be called with a client instantiated without API key: | ||
```kotlin | ||
val videosApi = VideosApi() | ||
``` | ||
|
||
## Recommendation | ||
|
||
It's recommended to create an instance of `ApiClient` per thread in a multithreaded environment to avoid any potential issues. | ||
For direct call with `ApiClient`: Do not call API from the main thread, otherwise you will get a `android.os.NetworkOnMainThreadException`. Dispatch API calls with Thread, Executors or Kotlin coroutine to avoid this. Alternatively, APIs come with an asynchronous counterpart (`createAsync` for `create`) except for the upload endpoint. | ||
|
||
## Have you gotten use from this API client? | ||
|
||
Please take a moment to leave a star on the client ⭐ | ||
|
||
This helps other users to find the clients and also helps us understand which clients are most popular. Thank you! | ||
|
||
# Contribution | ||
|
||
Since this API client is generated from an OpenAPI description, we cannot accept pull requests made directly to the repository. If you want to contribute, you can open a pull request on the repository of our [client generator](https://github.com/apivideo/api-client-generator). Otherwise, you can also simply open an issue detailing your need on this repository. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.