How can I use mixpanel API?

前端 未结 6 1996
抹茶落季
抹茶落季 2021-02-04 14:34

I\'m not able to connect to mixpanel.

I have tried with a correct api_key and api_secret, like this:



    

        
6条回答
  •  暗喜
    暗喜 (楼主)
    2021-02-04 15:37

    As Tyler Mentioned, you need to MD5 hash the signature before appending it to the request URL.

    In addition, if what you pasted is your code, you have a bug:

    path = path + + "&sig=" + sig;

    should be:

    path = path + "&sig=" + sig

提交回复
热议问题