MixPanel 问题消息不是 post

MixPanel Issue Message not post

无法 post 向 https://api.mixpanel.com/track?ip=1 发送消息。 (线程 37221)

 javax.net.ssl.SSLHandshakeException: Handshake failed

使用代码:

  String projectToken = getString(R.string.mixpanel_key);
    MixpanelAPI mixpanel = MixpanelAPI.getInstance(this, projectToken);

    try {
        JSONObject props = new JSONObject();
        props.put("Gender", "Female");
        props.put("Logged in", false);
        mixpanel.track("MainActivity - onCreate yes", props);
    } catch (JSONException e) {
        Log.e(TAG, "Unable to add properties to JSONObject", e);
    }

请提供解决此问题的原因

MixPanel 问题消息由于后端我认为请使用 google 分析,因为它是免费的,并且还提供相同的 functionality.likes 跟踪和点击计数等。