I’m having this same issue. I’m trying to use the Auth0 User Import/Export Extension to experiment with importing users from our database. I keep getting back “Oh snap! You got an error! An error occured while uploading the file: Bad Request”.
The problem I’m having is that there is no additional information I can use to debug the issue. Was my input file malformed? Is the service misconfigured? etc. I am able to successfully export users using the extension, so it doesn’t seem to be a problem with the extension’s connection to my tenant.
I tried formats like this:
[
{
"email": "...",
"email_verified": true,
"username": "<same as email>",
"user_id": "...",
"family_name": "Joe",
"given_name": "User",
"name": "Joe User",
"password_hash": "$2b$10$<bcryptdata>"
}
]
and also tried the sample from this page:
[
{
"email": "john.doe@contoso.com",
"email_verified": false,
"app_metadata": {
"roles": ["admin"],
"plan": "premium"
},
"user_metadata": {
"theme": "light"
}
}
]
Where can I see more detailed logs so I understand what’s going wrong?