Enabling the Sharing Function
Interface Description
This interface is invoked to enable the sharing function.
Notes
Prerequisites: The WebSocket connection with the OpenEyeCall has been established.
Method Definition
OpenEyeCall.prototype.shareControl = function(value, callbacks)
Parameter Description
Parameter |
Type |
Mandatory/Optional |
Description |
---|---|---|---|
value |
bool |
Mandatory |
Whether to enable the sharing function. |
callbacks |
Mandatory |
Callback method. |
Parameter |
Type |
Mandatory/Optional |
Description |
---|---|---|---|
response |
function |
Mandatory |
For details about the input parameters of the callback method, see Table 3. |
Parameter |
Type |
Description |
---|---|---|
description |
String |
Description of the current request. |
result |
Number |
Configuration result. The value 0 indicates success and other values indicate failure. |
rsp |
Number |
Internal message ID. |
The following is an example of input parameters of the callback method:
{ "description" : "tsdk_share_evt_stopsharewindow", "result" : 0, "rsp" : 67760 }
Examples
function switchShare() { var ischecked = document.getElementById("share-control-toggle-button").checked; if (ischecked) { console.info("switchShare ischecked true."); shareSwitch = true; document.getElementById("shareControlDiv").style.visibility = "visible"; this.global_openEye_SDK.openEyeCall.shareControl(shareSwitch, { response: switchShareRespone }) } else { console.info("switchShare ischecked false."); shareSwitch = false; document.getElementById("shareControlDiv").style.visibility = "hidden"; this.global_openEye_SDK.openEyeCall.shareControl(shareSwitch, { response: switchShareRespone }) } } function switchShareRespone(data){ console.log(data); if (data.result == 0) { console.info("switchShare Success"); } else { console.error("switchShare failed"); console.error(data); } }
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