@kimcodes Thanks for your response. Yeah, First time I did open the exported JSON and look at it before importing the users. But second time I didn’t open the file before importing. Result was same.
The exported JSON looks like below. (this is a sample data set. actual file has more fields than this like app_metadata
, identities
etc…)
{"user_id":"auth0|dfjksd4r4545","nickname":"demo","name":"demo@example.com","email":"demo@example.com","last_ip":"xxx.xxx.xxx.xxx","last_login":"2018-07-19T14:45:11.532Z","logins_count":228}
{"user_id":"auth0|dfjksd4r5545","nickname":"demo2","name":"demo2@example.com","email":"demo2@example.com","last_ip":"xxx.xxx.xxx.xxx","last_login":"2018-07-19T14:45:11.532Z","logins_count":228}
{"user_id":"auth0|dfjksd4r4565","nickname":"demo3","name":"demo3@example.com","email":"demo3@example.com","last_ip":"xxx.xxx.xxx.xxx","last_login":"2018-07-19T14:45:11.532Z","logins_count":228}
So I have modified file as below…
[{"user_id":"auth0|dfjksd4r4545","nickname":"demo","name":"demo@example.com","email":"demo@example.com","last_ip":"xxx.xxx.xxx.xxx","last_login":"2018-07-19T14:45:11.532Z","logins_count":228}, {"user_id":"auth0|dfjksd4r5545","nickname":"demo2","name":"demo2@example.com","email":"demo2@example.com","last_ip":"xxx.xxx.xxx.xxx","last_login":"2018-07-19T14:45:11.532Z","logins_count":228}, {"user_id":"auth0|dfjksd4r4565","nickname":"demo3","name":"demo3@example.com","email":"demo3@example.com","last_ip":"xxx.xxx.xxx.xxx","last_login":"2018-07-19T14:45:11.532Z","logins_count":228}]
…and re upload. This time upload succeeded. BTW, some data was missing like last_ip, last_login, logins_count
.
Also, The biggest problem is I can’t login with these imported users. When I am trying to login, I am getting error as
WRONG EMAIL OR PASSWORD
What could be the issue?