I’m using Lock v10.9 and have it setup something like this:
var options = {
auth: {
responseType: 'token',
redirectUrl: 'https://jwt.io',
redirect: true,
params: {
device: 'abc',
scope: 'openid offline_access',
nonce: 'superInsecureNonce',
state: 'myState'
}
}
};
If I examine the network requests being made, though, the parameters like state
and device
aren’t being sent. What am I doing wrong?