Hey !
Im trying to add custom variables to a JWT using the react auth0 SDK, but I want the front end req to specify the values.
I am making the req from the front end like:
const accessToken = await getAccessTokenSilently({
detailedResponse: true,
txn_data: '', // custom
toContractId: '', // custom
txn_data: '' // custom
})
But the event.request.body has no data as well as the event.request.query does not contain these variables in the actions event.
Help, PLZ