-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
# Module tidalapi | ||
|
||
This module provides easy access to the TIDAL Open API. | ||
This module provides easy access to the TIDAL Open API. Read more about it [here](https://developer.tidal.com/apiref?spec=catalogue-v2&ref=get-albums-v2&at=THIRD_PARTY). | ||
|
||
--- | ||
## Prerequisites | ||
|
||
tbd | ||
--- | ||
## Installation | ||
To effectively use this module, you will need to be able to provide a `CredentialsProvider` instance | ||
from the `auth` module. This is necessary to authenticate with the TIDAL API. | ||
|
||
tbd | ||
--- | ||
<!-- USAGE EXAMPLES --> | ||
## Usage | ||
|
||
tbd | ||
Instantiate your `TidalApiClient` like this: | ||
```kotlin | ||
val client = TidalApiClient(credentialsProvider) | ||
``` | ||
This client exposes the various API endpoints available as `Retrofit` service instances. You can | ||
then call the methods on these services to interact with the TIDAL API. |