mixpanel-python icon indicating copy to clipboard operation
mixpanel-python copied to clipboard

Mixpanel tracking is not working

Open PilliSiddharth opened this issue 2 years ago • 1 comments

Hey there, I'm currently using Mixpanel track with Python, and it has been working well for me. However, I've encountered an issue since yesterday. When I send an event to Mixpanel with the unique ID, event name, and its properties, the properties are not being displayed.

This is my code (just sending the event):

event_name = 'User - Chat Message'
event_properties = {
      'User ID': session["email"],
      'Message': message
  }

# Send the event to Mixpanel
mp.track(session["email"], event_name, event_properties)

PilliSiddharth avatar Jun 28 '23 11:06 PilliSiddharth

What is the response status?

abidgulshahid avatar Sep 20 '23 15:09 abidgulshahid