I have web authen via Moralis web3auth and mobile app authen via call API parse-server (https://docs.parseplatform.org/rest/guide/#signing-up)
curl -X POST \
-H "X-Parse-Application-Id: ${APPLICATION_ID}" \
-H "X-Parse-REST-API-Key: ${REST_API_KEY}" \
-H "X-Parse-Revocable-Session: 1" \
-H "Content-Type: application/json" \
-d '{"username":"cooldude6","password":"p_n7!-e8","phone":"415-392-0202"}' \
https://YOUR.PARSE-SERVER.HERE/parse/users
I thought I can sync by ethAddress but they get 2 ethAddress even I login only 1 account gmail for both web and app.
How to can i login web with google account and login app with this google account same 1 user in system?
What can I do ?
Thanks for reading