spotify alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view spotify alternatives based on common mentions on social networks and blogs.
-
go-openai
OpenAI ChatGPT, GPT-3, GPT-4, DALL·E, Whisper API wrapper for Go -
goamz
Popular fork of goamz which adds some missing API calls to certain packages. -
webhooks
:fishing_pole_and_fish: Webhook receiver for GitHub, Bitbucket, GitLab, Gogs -
githubql
Package githubv4 is a client library for accessing GitHub GraphQL API v4 (https://docs.github.com/en/graphql). -
twitter-scraper
Scrape the Twitter Frontend API without authentication with Golang. -
lark
Feishu(飞书)/Lark Open API Go SDK, Support ALL Open API and Event Callback. -
openaigo
OpenAI GPT3/3.5 and GPT4 ChatGPT API Client Library for Go, simple, less dependencies, and well-tested -
gostorm
GoStorm is a Go library that implements the communications protocol required to write Storm spouts and Bolts in Go that communicate with the Storm shells. -
hipchat (xmpp)
A golang package to communicate with HipChat over XMPP -
clarifai
DEPRECATED: please use https://github.com/Clarifai/clarifai-go-grpc -
go-trending
Go library for accessing trending repositories and developers at Github. -
go-lark
An easy-to-use SDK for Feishu and Lark Open Platform (Messaging API only) -
simples3
Simple no frills AWS S3 Golang Library using REST with V4 Signing (without AWS Go SDK) -
go-tgbot
Golang telegram bot API wrapper, session-based router and middleware -
cachet
Go(lang) client library for Cachet (open source status page system). -
go-postman-collection
Go module to work with Postman Collections
Access the most powerful time series database as a service
Do you think we are missing an alternative of spotify or a related project?
README
go-spotify
Simple Go library for the Spotify Web API
Installation
go get github.com/rapito/go-spotify/spotify
How-to-use
- Get Requests
import "fmt"
import "github.com/rapito/go-spotify/spotify"
...
spot := spotify.New(clientID,clientSecret)
result, _ := spot.Get("albums/%s", nil, "0sNOF9WDwhWunNAHPD3Baj")
fmt.Println(string(result))
- Check out the examples folder for simple usage.
- Read some of the tests at spotify_test.go for more examples.
Contribution
- You may fork this library and modify it as you please.
- You can make a pull request and I will be happy to check it out and merge it.
- If you find a bug, create an issue and I will do my best to fix it (someday).
Constraints
Right now this API version can only make successful GET requests since it just authenticates the application and not an specific user. This means you can use limited endpoints of spotify WEB API, as documented on their web page:
The access token allows you to make requests to the Spotify Web
API endpoints that do not require user authorization such as the Get a
track endpoint...
To see which endpoints you have access to, check out spotify web-api documentation.
Buy me a Drink
Links
While I was on my go-trip to create this api, I found some awesome libs/links which made my life easier. Check them out, hopefully they'll do the same for you:
- http://github.com/parnurzeal/gorequest
- http://github.com/bmizerany/assert
- http://github.com/bitly/go-simplejson
- http://github.com/avelino/awesome-go
Other APIs