544 questions
0
votes
1
answer
64
views
How to generate distinct_id from Mixpanel GO SDK?
Mixpanel Support is telling me to set the $device_id and $user_id, and let the go SDK decide on the $distinct_id, but all the Mixpanel-Go APIs in the library expect me to provide the distinct_id. So ...
0
votes
0
answers
36
views
Mixpanel JavaScript SDK cookies missing SameSite attribute - how to add SameSite=Lax?
A pen tester called out that my Mixpanel cookies (mp_*) are missing the SameSite attribute.
Current Setup
I'm using the Mixpanel JavaScript SDK with this configuration:
mixpanel.init(token, {
...
0
votes
0
answers
21
views
How can I retrieve user lists from Mixpanel and ForgeRock for automation?
I'm currently building an automation workflow that generates reports by pulling user lists from various platforms and uploading them into our identity management system.
So far, I've successfully ...
0
votes
0
answers
38
views
Where To Add the Dependency for Android integration for Mixpanel ? I code with AIDE; for Android with Libgdx for android game dev
I code with AIDE code editor, and, you can code non game apps for Android, and game apps; difference being when you select your Template to create; you select Mobile game java/libgdx app template for ...
0
votes
0
answers
52
views
Can user turn off Mixpanel tracking via device setting such as Advertising & Privacy on iOS?
My app is using Mixpanel and Swift, I can see some users does not have any logs on Mixpanel Dashboard. So I curious about can user turn OFF it by themself from iPhone settings?
0
votes
0
answers
19
views
Separate funnels that are MECE in Mixpanel
I'm newer to mixpanel and haven't been able to find an answer. I'm building a funnel to track conversions. The events are in this order:
Homepage opened
Clicked to open catalog
Catalog page opened
...
0
votes
1
answer
91
views
Percentage for each row count in Mixpanel JQL
I have issue with having percentage of the count of each API compared to total count of APIs.
i've had challenges through Mixpanel JQL to reach this purpose, i used reducer also.
now i've got that ...
0
votes
1
answer
2k
views
How to resovle – "Refused to execute inline script because it violates the following Content Security Policy"
I'm setting up Mixpanel in a simple chrome extension using Vanilla JS. I'm not using NPM but following this docs.
Below is my set-up where I pull in the Mixpanel SDK in the Index.html:
<!DOCTYPE ...
1
vote
1
answer
185
views
Find users with more than one distinct ids
I have an issue with Mixpanel merge that causes random users to be merged together. I am trying to debug this issue and for that I need a JQL query that shows me which users have more than 1 (or X) ...
0
votes
1
answer
116
views
Mixpanel reaching limits
Straight forward question about Mixpanel free tier !
What would happen if on the free tier and the limit of tracked events is reached
will it fail silently ?
or will the user see any error message ?
...
0
votes
1
answer
115
views
How to login or bypass mixpanel application? [closed]
I'm trying to create a Cypress script to perform a login to Mixpanel, make some modifications to my dashboard, and schedule it to run every day using Windows Task Scheduler. I've already written the ...
0
votes
1
answer
442
views
Mixpanel anonymous and known user events
I am attempting to implement Mixpanel and struggling with the connection between anonymous events and then eventual known user events.
Say I have an anonymous user that adds a product to cart. I’m ...
0
votes
1
answer
169
views
Will GTM get messed up if users push data to the data layer at the same time?
When using Google Tag Manager with a data layer variable ('payment_type'), if multiple users on different devices push data to the data layer simultaneously with different values, could this lead to ...
2
votes
1
answer
824
views
Mixpanel with static HTML and vanilla javascript
I want to use Mixpanel in a static HTML and vanilla javascript page. All the examples I can find use bower or npm to install mixpanel but these do not exist with a simple HTML and javascript page.
...
0
votes
1
answer
67
views
Mixpanel to biggquery daily / monthly export limit
So GA4 has this export limit of 1 Million events per day to bigquery. I want to know if Mixpanel has any similar daily / monthly limit.
I have searched online, but can't seem to find any relevant ...
0
votes
1
answer
357
views
Mixpanel not working with NestJS, cant find the tracking function
I am using mixpanel node (yarn add mixpanel) with NestJS and the only function it seems to recognise is the init function. I am calling this, then trying to call the track function but get the ...
1
vote
0
answers
347
views
Using mixpanel(in angular) with nginx [error]: Bad content type. Please use multipart
In the 'Response section' of Network Tab it shows text like
"Bad content type. Please use multipart."
I tried multiple approaches to get rid of the content-type issue
Content-Type "...
3
votes
1
answer
912
views
Downloading Mixpanel events with Raw Export API and filter on distinct_id
I have some events in Mixpanel which I can successfully download using the Raw Export API. In this example, I am filtering on the "city" field. This works.
import requests
url = ...
3
votes
0
answers
165
views
Flutter Segment: Merge events for single user
I am using Segment for analytics that is inter connected with
Mixpanel.
I've used this package for Flutter segment. I am adding the identify events when the user completes the signup process.
...
1
vote
0
answers
54
views
Is there any way to write formulae using own properties we have sent while tracking in mixpanel?
I have a app where a hiring manager posts a job and hires job seekers.
I have placed two tracking events.
Job Hired (which will be tracked once the job seeker gets hired for a particular job)
Job Not ...
0
votes
1
answer
187
views
Export all Users in Mixpanel
I tried exporting all users; but am unable to do so. I tried exporting based on the number of pages; but it did not work out. This code only exports 1000 users and returns Error500.
import requests
...
1
vote
1
answer
406
views
Should the default UTM Source be set to $default?
I am using MixPanel with a Laravel implementation. I have set up logic to set the 'UTM Source' based on our business requirements. This includes; $referrer, $social, $email, $organic, $network and $...
1
vote
1
answer
772
views
Mixpanel data export - terminated early response
Just exploring mixpanel's data export. The events are pushed from web app to mixpanel and I am trying to extract events from mixpanel thereafter; tried using the UI where we can hit api directly via ...
1
vote
1
answer
550
views
Exporting events in Mixpanel with Python
This is the code to the problem. I am trying to export all the events from mixpanel but I am unable to do so.
import requests
from requests.auth import HTTPBasicAuth
import base64
apisecret = '....'
...
1
vote
1
answer
182
views
Change mixpanel Json data with different delimiters to dataframe
I'm having trouble processing the data I scraped from Mixpanel regarding the "ProductDetails" event. The data is structured as shown below:
[{'event': 'ProductDetails',
'properties': {'...
1
vote
1
answer
349
views
How do I query multiple properties of events within Mixpanels' JQL?
function main () {
return Events( {
from_date: "2023-04-06",
to_date: "2023-05-26",
event_selectors: [{event: "FeedExited"}, {event: "GameExited"},...
0
votes
0
answers
385
views
IOS x Mixpanel: Sending event tracking from extension when app is terminated
Straight to the point: Is it possible to initiate a mixpanel instance, and send a track request from an app extension (i.e Notification Service Extension when received push notification) IF the app is ...
5
votes
0
answers
4k
views
How to use Mixpanel with Next.js in server-side rendering?
I am trying to use Mixpanel in a Next.js application with server-side rendering, but I am having trouble getting it to work. I have tried importing the Mixpanel library and initializing it in the ...
1
vote
0
answers
414
views
Mixpanel track function not initialized - Not due to Page Ruler
I am new to Mixpanel, I have been trying to use the JavaScript library to track events but I am unable to do so.
I get -
mixpanel-2-latest.min.js:13 Mixpanel error: "mixpanel" object not ...
0
votes
1
answer
664
views
How to link multiple guest events to one user in Mixpanel using HTTP API?
I can't seem to understand how to link multiple guests events with the same user in mixpanel once they log-in with the same credential. like one user using different browsers.
If a guest (with ...
1
vote
2
answers
2k
views
How to get list of events performed by user using Mixpanel API
I need an API that Gets all the events performed by user. We are using Mixpanel engage API endpoint to get user's device specific data. But can't seem to find any API that gets events performed by ...
0
votes
1
answer
543
views
How can I group MixPanel events by host name in JQL?
I am writing a JQL query to analyze MixPanel events. How can I group events by host name?
I tried this:
function(event) {return new URL(event.properties['$current_url']).hostname}
But I get an error ...
0
votes
1
answer
564
views
+layout.js or +layout.svelte for mixpanel integration in SvelteKit project when +layout.server.js already exists
I want to integrate Mixpanel to my SvelteKit project by following official documentation at https://developer.mixpanel.com/docs/javascript-quickstart
To integrate I have initilise mixpanel using code
...
3
votes
0
answers
444
views
How do I fix the Mixpanel error "errAnonDistinctIdNonGUIDForm" in the Identify event?
I'm calling identify() from the Javascript API in order to merge the Mixpanel id I created previously in my custom link tracker with the user id I generate when the user signs up
Here the (redacted) ...
1
vote
1
answer
614
views
How to add a cohort filter to a single event in Mixpanel?
I am creating a funnel diagram with two events. The first event tracks the number of logins and the second tracks the number of page loads of a specific page. I want to add a filter on the second ...
3
votes
0
answers
152
views
Mixpanel with Turbo Rails
I'm getting the following error while trying to use the Turbo Rails link:
Mixpanel error: The Mixpanel library has already been downloaded at least once. Ensure that the Mixpanel code snippet only ...
0
votes
1
answer
806
views
Using Mixpanel API for Laravel, I think my code is missing something, but I don't know what
Here is my code:
<?php
namespace App\Services;
use Mixpanel\Mixpanel;
use App\Models\User;
use Illuminate\Support\Facades\Config;
use Illuminate\Contracts\Auth\Authenticatable;
class ...
0
votes
1
answer
185
views
Why do UI analytics libraries separate pageview events from other events?
Most UI analytics libraries (e.g googleAnalytics) seem to differentiate between tracking pageViews and other events.
For example, this is from the Google Analytics page.
The Google Analytics client ...
3
votes
1
answer
5k
views
Mixpanel: export all events instead of first 100,200
I am going to export a list of unique devices for app installation by selecting a single tracking and scroll to bottom until all sessions are loaded, page by page , 100 events per page.
Please tell me ...
0
votes
1
answer
347
views
Mixpanel data getting wrong from api
I am working on to show analytics of user visits on a page and unique user visits on a page using mixpanel. We are storing events in mixpanel there is an event named Page Visit from where using ...
2
votes
1
answer
313
views
Get data for a funnel using Mixpanel api into Google spread sheet
I'm trying to get data for a funnel using Query Saved Report api.(Link) And I'm using Apipheny to export Mixpanel data into Google spread sheet. I'd like to see only conversion rate of funnel by month ...
-1
votes
1
answer
379
views
Impression tracking at scale
How to track impressions and watch time as product scale to millions of active users on the platform without hurting the app performance? we want to optimize the number of requests we need to make to ...
1
vote
1
answer
438
views
MixPanel: Should all property names be denoted with dollar signs?
The built-in default properties of MixPanel such as $browser or $city all start with dollar signs. Does this have any purpose? Should we denote custom properties with dollar signs as well or is the ...
1
vote
2
answers
507
views
Convert string of list of JSON which is separated by '\n' to list of JSON(data from mixpanel) in python
The data I retrieved from Mixpanel has the format:
"{"event":"info1xxxxx","Id":"0001"}
{"event":"info2xxxxx","Id":"0002&...
0
votes
1
answer
1k
views
Cannot catch exception thrown by mixpanel.track
I'm using mixpanel for tracking / analytics in my Ionic+Angular project. I want to catch the exception thrown by the mixpanel.track.
Tried Methods?
mixpanel.track returns Promise, on which I did tried ...
0
votes
0
answers
125
views
Binding Mixpanel for Xamarin.iOS, issues with objective-c category type
I am trying to update my Xamarin Mixpanel iOS bindings that I have here. While updating I figured I'd try re-enable a thing I had disabled before I continue to roll out updates all the way to the ...
2
votes
1
answer
2k
views
How to prevent mixpanel page-view event from being counted twice after clicking on popup dialog button
I am integrating Mixpanel for a React web app. When the user logs in and views their profile, it tracks a Mixpanel event, "viewed-own-profile", since the user has viewing their profile page.
...
1
vote
1
answer
489
views
What is the mixpanel equivalent in AWS?
I am learning more about AWS and I have learnt that they offer a lot of services that may be of great value. The problem however is that I do not know about all this services and since I am already ...
1
vote
2
answers
1k
views
how does one integrate Mixpanel into flutter applications?
i followed the steps given here
and after adding this
import 'package:mixpanel_flutter/mixpanel_flutter.dart';
...
class _YourClassState extends State<YourClass> {
Mixpanel mixpanel;
@...
3
votes
1
answer
514
views
Firebase A/B testing - Know what group a user is in on device
We have an A/B test set up that runs on Firebase. To analyze events we are using Mixpanel instead of Firebase. Assume we have User1 and User2.
User1 gets assigned experiment group A and User2 gets ...