No description
Find a file
Yoshihiro Tanaka 0113277759 remove subexes
2022-09-25 12:45:41 +09:00
.github/workflows enable GitHub Actions 2022-02-11 12:26:43 +09:00
examples optimize imports 2022-09-25 12:01:05 +09:00
src/spotify remove subexes 2022-09-25 12:45:41 +09:00
test/spotify fix tests 2018-09-22 16:28:03 +09:00
.gitignore Initial commit 2018-09-09 15:54:24 +09:00
LICENSE fix LICENSE 2018-09-21 13:43:04 +09:00
README.md replace badge 2022-02-11 12:34:27 +09:00
spotify.nimble remove subexes 2022-09-25 12:45:41 +09:00

Build Status

spotify

A Nim wrapper for the Spotify Web API.

Usage

This package supports authorization code grant and client credentials grant.

let
  token = newHttpClient().authorizationCodeGrant(
    "SPOTIFY_ID",
    "SPOTIFY_SECRET",
    @[SCOPES]
  )
  client = newSpotifyClient(token)

Or in your own way...

let client = newSpotifyClient(
  newSpotifyToken("ACCESS_TOKEN", "REFRESH_TOKEN (optional)", "EXPIRES_IN (optional)"))

And

let user = client.getCurrentUser()

if user.isSuccess:
  echo user.data.id
else:
  echo user.error.message

License

Copyright 2018 Yoshihiro Tanaka

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.