Realtime error

Cant connect to realtime using c#
Do i need any configuration?

        // Initialize the Supabase client
        Supabase = new Supabase.Client(
            "https://*****.supabase.co",
            "*******",
            new SupabaseOptions()
            {
                SessionHandler = new UnitySessionPersistence(),
                AutoRefreshToken = true,
                AutoConnectRealtime = true
            }
        );
`

this is my code but it throws exception if AutoConnectRealtime is true
Was this page helpful?