When my source code request open api gets response error about 52.202.62.238 / 52.202.62.237

Hello, my name is Derrek

I’m trying to use zoom JWT open api on my web site,
but when i enter my page it gets response error ‘System.Net.Sockets.SocketException’ and also tells me couldn’t get response from host 52.202.62.237:443’ / '52.202.62.238:443.

but i already set my whitelist of zoom domain and ip that shows on this page

and also its weird that 52.202.62.237:443 / 52.202.62.238:443 ip is not on that page list…
can i get some advice of this error

the below is my vb.net code

Dim url as String = "https://api.zoom.us/v2/users"
Dim request as HttpWebRequest
Dim response as HttpWebResponse

request = DirectCast(WebRequest.Create(url), HttpWebRequest)
request.ContentType = "application/json"
request.Headers.Add("autorization", Bearer **My Token** )

response = DirectCast(request.GetResponse(), HttpWebResponse) // Gets Error Here

Thank you

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