Hello All, I tried doing this with the below steps 1) Started a new trace in AS UI 2) Used the POST Python code on site and did some modification based on this feedback on this post to get a 200 OK response. import httplib, urllib params = urllib.urlencode({'data':{'event_name':'abc_score','tealium_trace_id':'09098','abc_score':'0.56','customer_id':'9999999'},'event':'view'}) headers = {"Content-type": "application/json","Accept": "image/gif"} conn = httplib.HTTPSConnection("collect.tealiumiq.com") conn.request("POST", "/<account>/<profile>/2/i.gif", params, headers) response = conn.getresponse() print response.status, response.reason data = response.read() conn.close() 3) We did DISCOVER --> TRACE . Nothing is there . It just says LISTENING events. We did DISCOVER --> LIVE STREAM --> 0 events etc. Could anyone help out here. Thanks, Aniket
... View more