I\'m not able to connect to mixpanel.
I have tried with a correct api_key and api_secret, like this:
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