Git Product home page Git Product logo

kissmetrics-ios-mac-os-x-library's Introduction

** This repository is now deprecated, please see https://github.com/kissmetrics/KISSmetrics/releases/tag/v1.0.0
for the final versions of all included clients **

KISSmetrics is different from other analytics platforms due to a combination of
three key features. We focus on funnels and conversions and make them easy to
track and interpret, use people as the basic unit of measure, and support
tracking of highly-flexible custom data through our simple API.

Find out more at http://www.kissmetrics.com

* ruby client has moved to https://github.com/kissmetrics/km
* php client has moved to https://github.com/kissmetrics/kissmetrics-php
* python client has moved to https://github.com/kissmetrics/py-KISSmetrics
* perl client is complete with crontab option (untested)

kissmetrics-ios-mac-os-x-library's People

Contributors

80steve avatar alkalin3 avatar andrewarrow avatar brendanlim avatar eager avatar mstump avatar nathanielwroblewski avatar percyhanna avatar willrust avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

kissmetrics-ios-mac-os-x-library's Issues

Missing tag for v1.0.0

I would like to add the most recent release (v1.1.3) to CocoaPods (see CocoaPods/Specs#2385), but the v1.0.0 CocoaPods version uses a different repository, which has a v1.0.0 tag defined.

I don’t know if that tag is correct or not, but the ideal course of action to maintain the integrity of CocoaPods’ specs is to add a v1.0.0 tag to 004726b in this repository.

Is this possible?

Infinite Request Retry, Floods Network Queue

Some of our logging requests are coming into connection:didReceiveResponse: with status code 502 (Bad Gateway).

Because they are not 200 or 304, they aren't removed from the sendQueue.

They never hit connection:didFailWithError: either.

KISSMetrics writes to the console "KISSMetricsAPI: INFO - Failure bad gateway" about 5 times per second as it continually sends out the same request each time it hits connectionDidFinishLoading:

Invalid type warning

There is a warning when trying to compile the API for iOS devices:

KISSMetricsAPI.m:517:129: Format specifies type 'unsigned long' but the argument has type 'NSUInteger' (aka 'unsigned int')

This is the easiest and full compatible fix I could think of:

diff --git i/KISSMetricsAPI.m w/KISSMetricsAPI.m
index e438e7e..a53da13 100755
--- i/KISSMetricsAPI.m
+++ w/KISSMetricsAPI.m
@@ -514,7 +514,7 @@ static KISSMetricsAPI *sharedAPI = nil;
         NSString *escapedKey = [self urlEncode:stringKey];
         if([escapedKey length] > 255)
         {
-            InfoLog(@"KISSMetricsAPI: WARNING - property key cannot longer than 255 characters. When URL escaped, your key is %lu characters long (the submitted value is %@, the URL escaped value is %@). Dropping property.", [escapedKey length], stringKey, escapedKey);
+            InfoLog(@"KISSMetricsAPI: WARNING - property key cannot longer than 255 characters. When URL escaped, your key is %lu characters long (the submitted value is %@, the URL escaped value is %@). Dropping property.", (unsigned long)[escapedKey length], stringKey, escapedKey);
             continue;
         }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.