如何使用Ruby

时间:2015-07-09 12:14:33

标签: ruby universal-analytics measurement-protocol

我尝试使用Ruby发布到Google Measurement Protocol:

uri = URI.parse("http://www.google-analytics.com/collect")
params = {"v"=>"1", "tid"=>"UA-XXXXXXXX-X", "cid"=>"XXXXXXXXX.XXXXXXXXX", "t"=>"event", "ec"=>"200", "ea"=>"John"}
result = Net::HTTP.post_form(uri, params) #<Net::HTTPOK 200 OK readbody=true> 
result.body # "GIF89a\x01\x00\x01\x00\x80\xFF\x00\xFF\xFF\xFF\x00\x00\x00,\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02D\x01\x00;" 

还尝试发送GET请求而不是POST:

RestClient.get("http://www.google-analytics.com/collect", params: params, timeout: 4, open_timeout: 4) # "GIF89a\x01\x00\x01\x00\x80\xFF\x00\xFF\xFF\xFF\x00\x00\x00,\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02D\x01\x00;" 

事件未被跟踪: enter image description here

我尝试通过在Chrome中输入相同的参数来发送相同的参数:

enter image description here

有效:

enter image description here

当我使用Ruby向管理协议发送请求时,我想我错过了标题或类似内容。但我无法弄清楚我错过了什么。

3 个答案:

答案 0 :(得分:1)

与python有类似的问题。设置User-Agent标题

后工作

卷曲示例看起来像这样

curl -H "user-agent: Some user agent" "https://ssl.google-analytics.com/collect?v=1&<other query params>"

答案 1 :(得分:1)

尝试更改:

uri = URI.parse("http://www.google-analytics.com/collect")

为:

uri = URI.parse("https://www.google-analytics.com/debug/collect")

通过这种方式,您将针对Measurement Protocol Validation Server测试该请求,而不是在响应正文中获取"GIF89a\x01\x00\x01\x00\x80\xFF\x00\xFF\xFF\xFF\x00\x00\x00,\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02D\x01\x00;",您将获得一些内容

{
  "hitParsingResult": [
    {
      "valid": false,
      "hit": "GET /debug/collect?tid=fake\u0026v=1 HTTP/1.1",
      "parserMessage": [
        {
          "messageType": "ERROR",
          "description": "The value provided for parameter 'tid' is invalid. Please see xxx for details.",
          "parameter": "tid"
        },
        {
          "messageType": "ERROR",
          "description": "Tracking Id is a required field for this hit. Please see xxx for details.",
          "parameter": "tid"
        }
      ]
    }
  ]
}

您可以在此处阅读更多内容:https://developers.google.com/analytics/devguides/collection/protocol/v1/validating-hits

答案 2 :(得分:0)

您不需要用户代理,只需遵循事件跟踪规则&amp; rest-client。使用Post方法填写所有参数。

您可以将rest-client与post方法一起使用,如下所示:

RestClient.post('https://www.google-analytics.com/collect?v=1&tid=UA-XXXXXXXXX-1&cid=XXXX-XXX&t=event&ec=Event%20Category&ea=Event%20Action&ev=1&el=Event%20Label', {}, {})

使用post方法格式化rest客户端:

RestClient.post(url, payload, headers={})

来源: