Error Code 1020 authentication issue


API Endpoint(s) and/or Zoom API Event(s)
https://zoom.us/oauth/authorize?response_type=code&client_id=

Description
My application authentication logic hasn’t changed, but it appears that starting after this weekend there was a firewall change or something related to Zoom’s cloudflare configuration. Any time I attempt to authenticate with the instructions listed here OAuth with Zoom, my server code is returning an error from cloudflare. Running this same call within a REST client like Postman/Imsomnia doesn’t have this issue. It is similar to other posts like this Error Code 1020.

Error?
error 1020

Doing some more testing, it seems that Zoom no longer supports HTTP/1.1 requests. Modifying to HTTP/2 seems to have fixed the denied issues from Cloudflare.

1 Like

Awesome!

It fix my problem too.

Now I use option:

&http.Client{
		Transport: &http.Transport{
			ForceAttemptHTTP2:     true,

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