Scanning a QR Code to Invite a Large Screen to a Meeting
joinPairConf
API Description
This API is used to scan a QR code to invite a large screen to a meeting.
Precautions
None
Method Definition
HWMSdk.getOpenApi(this.getApplication()).joinPairConf(JoinPairConfParam joinPairConfParam, HwmCallback<Void> callback);
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
joinPairConfParam |
Yes |
JoinPairConfParam |
Parameters for inviting a large screen to a meeting by scanning a QR code. |
callback |
Yes |
HwmCallback |
Callback for inviting a large screen to a meeting by scanning a QR code. |
Return Values
None
Parameter Extension
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
url |
Yes |
String |
QR code URL. |
confId |
Yes |
String |
Meeting ID. |
confPassword |
No |
String |
Meeting password. |
Return Values
None
Sample Code
public void joinPairConf() { JoinPairConfParam joinPairConfParam = new JoinPairConfParam(); joinPairConfParam.setConfId(confId); joinPairConfParam.setConfPassword(confPassword); joinPairConfParam.setUrl(url); HWMSdk.getOpenApi(this.getApplication()).joinPairConf(joinPairConfParam, new HwmCallback<Void>() { @Override public void onFailed(int retCode, String desc) { showToast(desc); } @Override public void onSuccess(Void unused) { if (successLayout != null) { successLayout.setVisibility(View.VISIBLE); } } }); }
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot