https://github.com/go-http/appannie
AppAnnie API wrapper
https://github.com/go-http/appannie
Last synced: 10 days ago
JSON representation
AppAnnie API wrapper
- Host: GitHub
- URL: https://github.com/go-http/appannie
- Owner: go-http
- Created: 2016-05-27T02:27:59.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-22T12:34:47.000Z (almost 10 years ago)
- Last Synced: 2025-11-10T18:25:49.163Z (8 months ago)
- Language: Go
- Size: 17.6 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#A golang AppAnnie Library
##usage
```go
package main
import (
"github.com/athurg/appannie_api"
"log"
)
func main(){
apiKey := "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
apiVer := "" //default is v1.2
client := appannie.New(apiKey, apiVer)
accounts, err := client.Accounts()
if err != nil {
log.Fatal(err)
}
log.Println(accounts)
}
```
About the parameter, please refer [AppAnnie's API Doc](https://support.appannie.com/hc/en-us/categories/202773667-API) for detail.
Other problems please [create an issue here](https://github.com/athurg/appannie_api/issues/new)
###TODO
Because of accounts limit, many apis need to be more testing with special apikey.