Awesome Go

mixpanel

CategoryThird-party APIs
SubcategoryThird-party APIs
Stars0

Mixpanel is a library for tracking events and sending Mixpanel profile updates to Mixpanel from your go applications

About mixpanel

Mixpanel Go Client

⚠️ Use oficial mixpanel SDK: https://docs.mixpanel.com/docs/tracking-methods/sdks/go

Usage

import "github.com/dukex/mixpanel"

--

documentation on godoc

Examples

Track

err := client.Track("13793", "Signed Up", map[string]interface{}{
	"Referred By": "Friend",
})

--

Identify and Update Operation

people := client.Identify("13793")

err := people.Track(map[string]interface{}{
	"Buy": "133"
})

err := people.Update("$set", map[string]interface{}{
	"Address":  "1313 Mockingbird Lane",
	"Birthday": "1948-01-01",
})

License

Released under the MIT License.

Author

Duke X (dukex)

Frequently Asked Questions

What is mixpanel?

mixpanel is a Third-party APIs library for the Go programming language. Mixpanel is a library for tracking events and sending Mixpanel profile updates to Mixpanel from your go applications

How do I install mixpanel?

Install mixpanel with the Go module system using `go get dukex/mixpanel`. Check the repository for the current installation instructions.

What category does mixpanel belong to?

mixpanel is listed under Third-party APIs, specifically Third-party APIs.

← Back to Third-party APIs