Network request failed - Access Identity Server 4 Discovery URL

“expo-auth-session”: “~3.5.0”,
“expo-random”: “~12.1.0”
“expo”: “~44.0.0”,

I am trying to load my identity server 4 discovery URL using the expo auth session but I got errors as the Network request failed. Could you please help me with this?

  const discovery = AuthSession.useAutoDiscovery('https://productdev.co:30200/user');
  const [request, result, promptAsync] = AuthSession.useAuthRequest(
    {
      clientId: 'Client Interactive',
      redirectUri,
      scopes: ["openid", "profile", "email", "api","offline_access"],
      
    },
    discovery
  );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.