Good Day!
Here’s what I receive from the Auth API.
{
address: 'xxxxxxxxxxxxx',
profileId: 'xxxxxxxxxxxxx',
signature: 'xxxxxxxxxxxxx'
}
Do I have to save that in a new class? How can I do it same with the _Users in the v1.
Good Day!
Here’s what I receive from the Auth API.
{
address: 'xxxxxxxxxxxxx',
profileId: 'xxxxxxxxxxxxx',
signature: 'xxxxxxxxxxxxx'
}
Do I have to save that in a new class? How can I do it same with the _Users in the v1.
There should be code that already creates a user in current parse server demo. You don’t have to do something with that data necessarily, when you got that response you know that the signature was validated successfully and you can authenticate a user with that wallet address.
Ohhh that makes sense, thank you!