google-analytics alternatives and similar packages
Based on the "Third-party APIs" category.
Alternatively, view google-analytics alternatives based on common mentions on social networks and blogs.
-
telegram-bot-api
Golang bindings for the Telegram Bot API -
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). -
geo-golang
Go library to access geocoding and reverse geocoding APIs -
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. -
VK SDK for Golang
Golang module for working with VK API -
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. -
hipchat
This project implements a Go client library for the Hipchat API. -
go-lark
An easy-to-use SDK for Feishu and Lark Open Platform (Messaging API only) -
go-tgbot
Golang telegram bot API wrapper, session-based router and middleware -
cachet
Go(lang) client library for Cachet (open source status page system). -
simples3
Simple no frills AWS S3 Golang Library using REST with V4 Signing (without AWS Go SDK) -
go-postman-collection
Go module to work with Postman Collections -
GoMusicBrainz
a Go (Golang) MusicBrainz WS2 client library - work in progress
Build time-series-based applications quickly and at scale.
Do you think we are missing an alternative of google-analytics or a related project?
README
Google analytics Data pull
Lightweight Golang library for pulling Google Analytics API data. Built for use with Core Reporting API (v3):
https://developers.google.com/analytics/devguides/reporting/core/v3/reference
Install
go get github.com/chonthu/go-google-analytics
Authentication
In order to authenticate this library for use with your Google Analytics account, an oauth2 token needs to be generated. For a new project login to Google Developers Console and Create Project.
Add Analytics API to list of APIs, create a new "Installed" App Client ID and download it in JSON format.
Place the client_secret.json in the root of your application. Ps. you have to renaming it from the crazy name to just "client_secret.json"
Usage
See Examples here
Testing
Unit tests are included with this library, use go test ./...
to run through the set provided.
** This doesnt really work yet, but working on it **
Changelog
1.0.0
- cleaner naming
- clearner working examples
0.1.1:
- Implemented batch processing
- New request period segmentation functionality
- Cleaner error reporting and resolution suggestions
0.1.0:
- Initial release