The Zoom Developer Platform is an open platform that allows third-party developers to build applications and integrations upon Zoom’s video-first unified communications platform.
Guess you need to write a wrapper for the SDK or use it using JavaObject.
I personally prefer writing a wrapper in such cases. I´m not so good with JavaObject ;-)
Guess you need to write a wrapper for the SDK or use it using JavaObject.
I personally prefer writing a wrapper in such cases. I´m not so good with JavaObject ;-)
Actually I was studying JavaScript to make a WEB App.
You don't need to know JavaScript. The modules are ready but you need to use a FrameWork JS like the React or Angular. I don't feel like learning another language.
Even by downloading the examples on GITHUB created by the stubborn company I can understand with difficulty. For Desktop they are created in C. For Android with Java on Eclipse. I don't know C. I'll try in Java ...
My problem that I do not tie English Natively, I use Google Translate so I struggle a lot.
Of course, I also made some of my B4A libraries with small parts in Java. But it's one thing to write a few lines of Java, it's another to understand a source written by another.
Of course, I also made some of my B4A libraries with small parts in Java. But it's one thing to write a few lines of Java, it's another to understand a source written by another.
You are surely right. The good thing is that you do not need to fully understand what a method is doing if you know how to correctly call this method. Or how to write a wrappercode which calls this method respectively.
My java knowledge is not enough to write my own library using java. But i´ve learned how to write a wrapper to use it in b4a ? ?
You are surely right. The good thing is that you do not need to fully understand what a method is doing if you know how to correctly call this method. Or how to write a wrappercode which calls this method respectively.
My java knowledge is not enough to write my own library using java. But i´ve learned how to write a wrapper to use it in b4a ? ?
The Zoom Developer Platform is an open platform that allows third-party developers to build applications and integrations upon Zoom’s video-first unified communications platform.
marketplace.zoom.us
They do provide a REST Api for most of the Features (if not all). You can use B4X Code (okhttputils2) to communicate with this Api.
The Zoom Developer Platform is an open platform that allows third-party developers to build applications and integrations upon Zoom’s video-first unified communications platform.
marketplace.zoom.us
They do provide a REST Api for most of the Features (if not all). You can use B4X Code (okhttputils2) to communicate with this Api.
You need to add a Authorization Header using "Bearer xxxx" where xxx is your AccessToken
The rest is described in the Documentation. While browsing a bit there i see that they do provide a "TestTool" too. So you can easy build a test there and see how the call must be done.
You need to add a Authorization Header using "Bearer xxxx" where xxx is your AccessToken
The rest is described in the Documentation. While browsing a bit there i see that they do provide a "TestTool" too. So you can easy build a test there and see how the call must be done.
I would not be wrong, because I have trouble understanding the English text, but I think I understand that to get the TOKEN you can also use JWT to request the TOKEN with the REST API method and the answer is obtained in JSON.
So, correct me if I misunderstood, with okHttputil2 i could send ID Code and Secret Code and get a TOKEN
I would not be wrong, because I have trouble understanding the English text, but I think I understand that to get the TOKEN you can also use JWT to request the TOKEN with the REST API method and the answer is obtained in JSON.
I´ll check again later today. From what i have read in their docu i did understand that you need to use OAuth2 to get the Token. I did not saw anything about JWT.
Edit to add:
I now saw the tree JWT beside the Tree OAuth2. If i were you i would go the OAuth2 way.
The Zoom Developer Platform is an open platform that allows third-party developers to build applications and integrations upon Zoom’s video-first unified communications platform.
The Zoom Developer Platform is an open platform that allows third-party developers to build applications and integrations upon Zoom’s video-first unified communications platform.
I need to create an application that uses the Zoom Cloud Meeting API. With this application I must have the HOST functions (Mute / MuteAll / UnMute / UnMuteAll / Rename / List HAND) If possible (but not necessary) also be able to receive / send the video in streaming. I want to make it Android...