When I try to log in with custom Facebook through cyan, the following screen appears. I am using the latest version of no-modal v6.1.1.
When is it usually redirected to a screen like this?

And, when using cyan, which OAuth redirection URL should be set?
I set it like this: https://cyan.openlogin.com/auth
async function init() {
try {
setIsLoading(true);
const web3AuthInstance = new Web3AuthNoModal({
chainConfig: {
chainNamespace: CHAIN_NAMESPACES.EIP155,
rpcTarget: 'https://polygon-rpc.com',
blockExplorer: 'https://polygonscan.com/',
chainId: '0x89',
displayName: 'Polygon Mainnet',
ticker: 'matic',
tickerName: 'Matic',
} ,
clientId,
web3AuthNetwork: 'cyan',
});
const privateKeyProvider = new EthereumPrivateKeyProvider({
config: { chainConfig: {
chainNamespace: CHAIN_NAMESPACES.EIP155,
rpcTarget: 'https://polygon-rpc.com',
blockExplorer: 'https://polygonscan.com/',
chainId: '0x89',
displayName: 'Polygon Mainnet',
ticker: 'matic',
tickerName: 'Matic',
} , },
});
const openloginAdapter = new OpenloginAdapter({
adapterSettings: {
clientId,
network: 'cyan',
uxMode: 'redirect',
loginConfig: {
google: {
verifier: 'xxx-google-cyan-dev',
typeOfLogin: 'google',
clientId: 'xxxxxxxxxxxxx,
},
facebook: {
verifier: 'xxx-facebook-cyan-dev',
typeOfLogin: 'facebook',
clientId: 'xxxxxxxxxxxxx',
},
},
},
loginSettings: {
mfaLevel: 'none',
},
privateKeyProvider,
});
web3AuthInstance.configureAdapter(openloginAdapter);
subscribeAuthEvents(web3AuthInstance);
setWeb3Auth(web3AuthInstance);
await web3AuthInstance.init();
setStatus(web3AuthInstance.status);
} catch (error) {
console.error(error);
} finally {
setIsLoading(false);
}
}
init();
}, [setWalletProvider]);