mixpanel / mixpanel-python

Official Mixpanel Python library.
https://mixpanel.com/help/reference/python
Other
102 stars 85 forks source link

Mixpanel tracking is not working #121

Open PilliSiddharth opened 1 year ago

PilliSiddharth commented 1 year ago

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)
abidgulshahid commented 12 months ago

What is the response status?