DEV Community

Cover image for Generating a Zoom Meeting Url Using Firebase Cloud-Functions
lonewolf_zlife
lonewolf_zlife

Posted on

Generating a Zoom Meeting Url Using Firebase Cloud-Functions

Introduction

Hello, everyone! I hope you all are doing well. In this blog, I will share and demonstrate how to generate the Zoom meeting url using the Cloud-Functions in the fastest way. This is my very first blog writing about what I have just learned or completed in order to leave it as an example for those who might come later having same requirements or problem as me.

Let's get started

Firstly, you should go and create the Zoom for developer account in (https://marketplace.zoom.us/).
Screen Shot 2564-05-02 at 09.33.54
You should see this above image after you signed up successfully. Then, go create the app in the Zoom marketplace for JWT as the following image.
Screen Shot 2564-05-02 at 09.33.30
JWT
Screen Shot 2564-05-02 at 09.45.05

After you created successfully, you will be redirected to this scene and try to fill out all the required informations.
Screen Shot 2564-05-02 at 09.46.57
Screen Shot 2564-05-02 at 09.47.09

Next, you have to set the expiration time of the JWT token and for me I set it to expire in one year for the token. It might not be a good practice but it's the fastest way to generate the Zoom meeting url.

Calling to the Zoom Api endpoint
Screen Shot 2564-05-02 at 10.02.17

Now, let's try to call to the endpoint to generate the Zoom meeting url via Postman.
Zoom endpoint: https://api.zoom.us/v2/users/me/meetings
Token: for the token here is the JWT token of the JWT app we just created in the Zoom developer. So, you can just copy and paste it here.
Post Request Body
Screen Shot 2564-05-02 at 10.12.19
For the settings of the body request, you can set it to control over the attendees like allowing screen sharing or not ...

Response
Screen Shot 2564-05-02 at 10.31.38
You will receive this as the response if the post request is successful. And for the join_url is the url which you can spread to the attendee for attending the Zoom meeting.

Making request using Axios
Screen Shot 2564-05-02 at 10.38.25

Everything here is pretty much the same as in the Postman. In the header of the request, you just have to pass the JWT token there and if the request is successful, the same response will be returned as in the Postman.
You can make it as onCall, onRequest or pubsub is as your need for Firebase Cloud-functions.

Screen Shot 2564-05-02 at 10.44.28

Conclusion

I hope it might be helpful and any constructive comments are always welcomed.
Thank you!

References
https://marketplace.zoom.us/docs/api-reference/zoom-api/meetings/meetingcreate
https://marketplace.zoom.us/docs/guides

Top comments (0)