createGetRequest static method
创建 GET 请求
Implementation
static WebRtcHttpMessage createGetRequest(
String host, int port, String apiUrl) {
return newBuilder()
.autoRequestId()
.setHost(host)
.setPort(port)
.setApiUrl(apiUrl)
.get()
.build();
}