I am approaching to get a meeting API.
and I got a responseBody returned.
but message is emptry…
please help me check it out and determine what message is for…
and kindly refer to server side code in java below
public String retrieveDetailOf_theMeeting(String access_Token) throws IOException {
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://api.zoom.us/v2/meetings/{meetingId}")
.get()
.addHeader("authorization", "Bearer "+ access_Token)
.build();
final Response response = client.newCall(request).execute();
System.out.println(response.message());
System.out.println(response.body().toString());
System.out.println(response.toString());
client.clone();
return response.body().toString();
}
and I got response code 200 and message is like … nothing…
here I put response body…
let me know how to action for it if you would help me~
and I am currently trying to customize zoom meeting ui.
but the question is… it seems the scroll bar css style of zoom web sdk auto built in is overridden to other css style…
so I attempted to put it on css tyle to customize like below
#zmmtg-root {
display:none;
overflow:auto;
}
but it still doesn’t work…
could you advise me how to deal with this?
First, in regards to calling our Meetings endpoint, can you clarify whether you’re trying to create a meeting or fetch a meeting? If you’re able to share the full request URL and response, I’m happy to take a closer look.
As for editing the custom CSS in our SDK, if you don’t wish for the CSS of our SDK to affect your application’s body, you can put Zoom into its own div.
The Zoom Meeting UI is not actually attached to the body, but the css makes it seem that way because of the following styles:
The Zoom Meeting UI will be rendered in the tag with the zmmtg-root id. You can place this anywhere in your project. You can also customize the css classes that are generated as well.
<div id="zmmtg-root"></div>
You can also read more about other suggestions related to this on our Dev Forum here: