I am developing a .NET tool.
For OAuth authentication with Genesys Cloud, I am using ImplicitGrant authentication via GenesysCloudOAuthWebView.
However, when I attempt to change the proxy destination as shown in the following code, the Genesys Cloud login page appears completely blank. There is no company-specific authentication implemented on the proxy.
WebProxy proxy = new WebProxy(settings.ProxyAddress, true);
WebRequest.DefaultWebProxy = proxy;