Really Appreciated - I have all details for Zoom API, but I don't know how to do it all things, This video is very helpfull Thanks!!!!
@SnowExpertRohit9 ай бұрын
Glad it was helpful!
@niju74894 ай бұрын
Is there a way to only allow users from our app to join the live meeting without authentication but authenticate the users who join from the link outside the app
@janhavipimplikar60482 ай бұрын
Thank you! This was really needed!
@SnowExpertRohit2 ай бұрын
Thanks
@jaditi9308 ай бұрын
Thankyou so much sir! I was really looking for this.
@SnowExpertRohit8 ай бұрын
You are most welcome
@Dhanmeetnijhawan6 ай бұрын
hey getting this error while get token access: {"status":false,"errorCode":4700,"errorMessage":"Invalid redirect url","result":null}
@wordpressaccuratehelp42789 ай бұрын
That is Great Thank you Brother
@SnowExpertRohit9 ай бұрын
Thanks
@madawakolla1251 Жыл бұрын
Please be note to show the URL section in the browser.By the way great video.Keep up the good work💚
@SnowExpertRohit Жыл бұрын
Thanks
@darkhorse-ou9lo3 жыл бұрын
I m getting invalid redirect, errorcode-4700 while getting acess token......please help!!!!
@alokyadav96842 жыл бұрын
same for me
@dhiruram1530 Жыл бұрын
explain more about postman instead of already having it set up
@xergiok1981 Жыл бұрын
Thank you, i need integrate with .net core 7 is this posible?
@curiosidadesyrecuerdos1903 Жыл бұрын
thank you., when upload about integration zoom server to server Oauth with moodle
@algoristy1784 Жыл бұрын
Can we use that same access token into another application too?? Like we get the access tocken from postman and use that tocken into creating java application
@SnowExpertRohit Жыл бұрын
once you get access token you can use on other applications technically but the problem is access have sort life span its expire 30 min or 1 hr or in a day based on third party applications
@algoristy1784 Жыл бұрын
@@SnowExpertRohit Thanks for the reply but can you make a tutorial on how to integrate zoom API in a flutter application??
@sumantamarick8695 Жыл бұрын
Thank You Bro It's really helpful
@SnowExpertRohit Жыл бұрын
Welcome, please like share and subscribe
@anshidar7104 Жыл бұрын
hey, Can i use others email id in place of {userid} so taht they are admin of the meeting? thanks for the video
@SnowExpertRohit Жыл бұрын
yes you can if you have access to query
@longguru3 жыл бұрын
Good bro!
@RabbanahMalayalam3 жыл бұрын
Very good bro
@RaviShankarDadhich2 жыл бұрын
Thank you for the video. It is really helpful.
@SnowExpertRohit2 жыл бұрын
Wc
@sushilkumarkc16663 жыл бұрын
Sir I was taking online class from one institution but now it says an error occured, error code 124, Can you please tell me how to solve the problem?
@massimotarquini1168 Жыл бұрын
did you try to do the authentication without the oauth 2.0 wizard in postman but directly using the post end point? I am trying to authenticate without using the postman wizard
@SnowExpertRohit Жыл бұрын
Sorry but I never try to authenticate by direct url
@massimotarquini1168 Жыл бұрын
@@SnowExpertRohit ok no problem man. i am experiencing an issue now. the app oauth was working up until yesterday and now when trying to get a new access token (since it expired) it does not allow me to authenticate anymore. i get the error "You cannot install the app because you don't have the required permissions. Please contact your IT administrator for permission and try again. " I am an admin and have full permissions on everything. i just cannot fathom how it was working up until yesterday no issue and now it does not work anymore. have you experienced this? thanks
@GuillaumeDuhan12 жыл бұрын
Thank you so much my friend !
@SnowExpertRohit2 жыл бұрын
You're very welcome.
@karllazlo62372 жыл бұрын
Amazing video. Thank you!
@SnowExpertRohit2 жыл бұрын
Thanks.. please like share and subscribe.
@Ordelos3 жыл бұрын
Amazing, love u
@Ordelos3 жыл бұрын
So if i implement that request in a button on my Website is there any issue with the duration time of the access token? It expired sometime in postman and i needed To renew it
@mdjiyauddinansari70832 жыл бұрын
good video.please make a video on hrsd.Thank you
@SnowExpertRohit2 жыл бұрын
Thank you
@J_typoi Жыл бұрын
Sir, is postman really needed for this to work? Or I can do this in python or other programming languages as well?
@SnowExpertRohit Жыл бұрын
postman fod testing purpose
@J_typoi Жыл бұрын
okay sir. Thank you!
@murilojosedeoliveira9629 Жыл бұрын
@@J_typoi how to make it in Python? My dubts is CALLBACK URL. How to create this URL callback?
@casazee57412 жыл бұрын
Very helpful. Prior to watching this video I couldn't figure out how to provide a valid callback URL.
@SnowExpertRohit2 жыл бұрын
Thanks means a lot, please like share and subscribe
@alejandrocabrera31243 жыл бұрын
thank you very much
@mohammadshohag6043 жыл бұрын
do it in react js
@muhammadaneesraza3084 Жыл бұрын
@api.get('/oauth/callback/', tags=['Integrations']) async def oauth_callback(request: Request): # error = request.query_params.get('error', '') # if error: # return "Error: " + error code = request.query_params.get('code') if code: access_token = generate_access_token(code) if access_token: return access_token else: return "No code provided" it returns no code provided