Hi,
I am integrating zoom in my website. A teacher will schedule a meeting and a student will get join_url using which he will get connected to the teacher through zoom. For doing this, I am following below steps.
1- Create a Oauth user level app from marketplace.
2- Calling https://zoom.us/oauth/authorize?response_type=code&client_id=XRnjSWGsST2tZl0_bv9JiQ&redirect_uri=http://13.127.138.63/hp_test/index.php/mentor/schedule_meeting to generate an access token which I will use to call zoom api.
3- After generating access token, using it to call zoom api to schedule meeting through this api https://api.zoom.us/v2/users/me/meetings.
Now the problem is that if I have not logged into zoom and I am trying to schedule a meeting then it will first ask me to login into zoom account. From there it will authorize and then generate access token and will finally schedule a meeting.
But this is wrong. Because suppose I have 100 teachers who want to schedule meeting at their end, then they will get a prompt first to log into zoom account and then they will be able to schedule a meeting.
I don’t want this to be happened. I need it to be happened without logging into zoom account first. Please tll me how can i do this.