-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync Failing #22
Comments
@jb-ut are you on a free plan trying to export mixpanel => sheets? |
@ak--47 I am not on a free plan on Mixpanel. Any additional suggestions ? |
@SarahTastewise, I just ran into this. This error is actually coming from Google Scripts -- if you're logged into multiple Google Account, add the Mixpanel <> Sheets add-on to each Google account. (My technical assumption here is that GScripts run as whoever is logged in as "/u/0"). Second, to make edits to a lookup table it looks like it needs to (A) exist and (B) be "Shared" first: And the lookup table ID is found here (I thought it was the table name, but it's the pre-existing ID): Would be nice to see complete end-to-end instructions in the readme @ak--47 :) |
Looks like the issue is with the validate() function. It actually returns: { error: 'data, missing or empty', status: 0 } Which is not what is expected in https://github.com/mixpanel/sheets/blob/main/utilities/validate.js#L46-L64 Updating the expected value to this works for my case (service account & updating lookup table): const expected = {
error: "data, missing or empty",
status: 0,
}; PR here #33 |
Getting following response after clicking "Run" for Google Sheets connector.
✖️ RUN FAILED ... got error:
Authorization is required to perform that action.
Confirmed Mixpanel Service Account User access level set at: Admin
Verified Service Account Secret
The text was updated successfully, but these errors were encountered: