2
Measurement protocol guide如何使用Python發佈到Google Measurement Protocol?
我需要一個POST如何使用Python看起來的例子。
就像這樣,但工作。
import httplib, urllib
conn = httplib.HTTPConnection("www.google-analytics.com")
conn.request("POST", "v=1&tid=UA-XXXXXX-Y&cid=666&t=event&ec=game&ea=start&ev=0")
response = conn.getresponse()
print response.status, response.reason
data = response.read()
conn.close()
非常感謝您!有效! – m3nthal
您可以使用fiddler http調試器來跟蹤這個工作示例併發布原始請求和響應嗎?我想解決我的問題http://stackoverflow.com/questions/19451738/universal-analytics-measurement-protocol-respond-200-ok-but-no-events-appers – qub1n