NAME WWW::Mixpanel VERSION version 0.01 SYNOPSIS use WWW::Mixpanel; my $mp = WWW::Mixpanel->new( '1827378adad782983249287292a', 1 ); $mp->track('login', distinct_id => 'username', mp_source => 'twitter'); DESCRIPTION The WWW::Mixpanel module is a young implementation of the API which provides realtime online analytics. Mixpanel.com receives events from your application's perl code, javascript, email open and click tracking, and many more sources, and provides visualization and publishing of analytics. Currently, this module mirrors the event tracking API (), and will be extended to include the powerful data access and platform parts of the api. FEATURE REQUESTS are always welcome, as are patches. This module is designed to croak on failure, please use something like Try::Tiny. METHODS new( $token, [$use_ssl] ) Returns a new instance of this class. You must supply the API token for your mixpanel project. HTTP is used to connect unless you provide a true value for use_ssl. track('', [time => timestamp, key => val, ...]) Send an event to the API with the given event name, which is a required parameter. If you do not include a time parameter, the value of time() is set for you automatically. Other parameters are optional, and are included as-is as parameters in the api. This method returns 1 or croaks with a message. Per the Mixpanel API, a 1 return indicates the event reached the mixpanel.com API and was properly formatted. 1 does not indicate the event was actually written to your project, in cases such as bad API token. This is a limitation of the service. You are strongly encouraged to use something like "Try::Tiny" to wrap calls to this API. Today, there is no way to set 'URL' parameters such as ip=1, callback, img, redirect. You can supply ip as a parameter similar to distinct_id, to track users. TODO /track to accept array of events Track will soon be able to accept many events, and will bulk-send them to mixpanel in one call if possible. Data API The data API lets you pull your data from mixpanel. /platform support The Platform API will be supported. Let me know if this is a feature you'd like to use. FEATURE REQUESTS Please send feature requests to me via rt or github. Patches are always welcome. BUGS Do your thing on CPAN. AFFILIATION I am not affiliated with mixpanel, I just use and like the service. AUTHOR Tom Eliaz COPYRIGHT AND LICENSE This software is copyright (c) 2011 by Tom Eliaz. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.