Get Access Token

Description
I am trying to get access token to create meeting. Getting Access Token is not working and showing below error

Error
Cross-Origin Read Blocking (CORB) blocked cross-origin response https://zoom.us/oauth/authorize?response_type=code&client_id=iUPqqefuSUWEmrjrx8374A&redirect_uri=http://www.rankr.io&callback=jQuery3310526901235900046_1587124639813&_=1587124639814 with MIME type text/html

Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth for getting access token.

Which Endpoint/s?
Knowing the API endpoint/s can help us to identify your issue faster. Please link the ones you need help/have a question with.

How To Reproduce (If applicable)
Steps to reproduce the behavior:
$.ajax({
url: “https://zoom.us/oauth/authorize?response_type=code&client_id=xxxxxxxxxxxxxxxxxxxx&redirect_uri=http://www.example.io”,
type: ‘GET’,
headers:{“Access-Control-Allow-Origin”:"*",
“X-Content-Type-Options”:“nosniff”
},
crossDomain: true,
dataType: ‘jsonp’,
responseType:‘text/html’,

    success: function(res) {
    	console.log(res);
    },
			error:function(res){
				console.log(res);
			}
	});

Screenshots (If applicable)


Additional context
How to rectify corb issue and get receive token. Suggest me what to do

Hey @priyakvb,

To make requests to the Zoom API, you must use server side code like Node.js. You cannot make requests from the frontend.

Thanks,
Tommy