Simple, yet powerful Adcell go client to import data feeds into you projects.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
Golang Adcell client for https://www.adcell.de
Check the example
folder to get started.
You need to have an Adcell account, a promoId and a slotId.
adcell-go supports 2 last Go versions and requires a Go version with modules support. So make sure to initialize a Go module:
go mod init github.com/my/repo
And then install adcell-go:
go get github.com/matthiasbruns/adcell-go
package main
import (
"fmt"
"github.com/matthiasbruns/adcell-go/adcell"
"net/http"
)
func main() {
adcellClient := adcell.NewAdcellClient(&http.Client{})
fetchDataFeed(adcellClient)
}
func fetchDataFeed(adcellClient *adcell.AdcellClient) {
feed, err := adcellClient.FetchDataFeed(&adcell.DataFeedOptions{
PromoId: "promoId",
SlotId: "slotId",
})
if err != nil {
panic(err)
}
fmt.Println(feed)
}
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.
Matthias Bruns - @MTrax - git@matthiasbruns.com - Discord
Project Link: https://github.com/matthiasbruns/adcell-go
Use this space to list resources you find helpful and would like to give credit to. I've included a few of my favorites to kick things off!