How do I grand permission for production server to use Zoom API?

Description
I am able to create meeting from terminal using ‘curl’ comand from production server but not from my app(python code) on the production server.
I get the following error on the site’s page when I do the post command:
conn.request(“POST”, “https://api.zoom.us/v2/users/me/meetings”, headers=headers, body=body)

Error
ConnectionRefusedError

Additional context
Same code it’ s working succesfully running it on localhost ( meeting is created in Zoom dashboard ).

Hey @LCristian,

What response do you get from Zoom? It seems like the ConnectionRefusedError is coming from your server.

Thanks,
Tommy

Hello Tommy,
Yes, I think that’s right. Digging a little bit more I think there is a proxy issue. There is a procedure to go through proxy ? My server provider, pythonanywhere, had already api.zoom.us whitelisted and they added also zoom.us
But I still get this error trying the POST from my app.

This is their answer:
“You need to check on the zoom side how to make it happy with connection over proxy.”

Regards,
Cristian

Hey @LCristian,

Here are our requirements for making requests:

Thanks,
Tommy