Meeting Information Sharing Notification
Notification Description
A notification is sent to display the page for sharing meeting information. The sharing page and size displayed when the pointer is placed on the title bar are specified by the external app. The display position and time of display and hiding are controlled by the SDK. This API is used for native implementation, which is convenient and simple.
Method Definition
1
|
- (NSView *)socialShareView:(HWMConfStateInfo *)confInfo; |
Sample Code
- (NSView *)socialShareView:(HWMConfStateInfo *)confDetail { if (!self.socialView) { self.socialView = [[HWMSocialView alloc] initWithFrame:NSMakeRect(0, 0, 500, 300)]; self.socialView.wantsLayer = YES; self.socialView.layer.backgroundColor = [NSColor whiteColor].CGColor; } self.socialView.confDetail = confDetail; return self.socialView; }
Parameter |
Type |
Description |
---|---|---|
confInfo |
Details about the ongoing meeting. |
Parameter |
Type |
Description |
---|---|---|
confId |
NSString * |
Meeting ID. |
confSubject |
NSString * |
Meeting topic. |
chairmanPwd |
NSString * |
Host password. |
generalPwd |
NSString * |
Guest password. |
startTime |
NSTimeInterval |
Meeting start time. The value is a UTC timestamp, accurate to seconds. |
endTime |
NSTimeInterval |
Meeting start time. The value is a UTC timestamp, accurate to seconds. |
videoConf |
BOOL |
Whether the meeting is a video meeting. |
confScheduleName |
NSString * |
Scheduler name. |
chairJoinUri |
NSString * |
Link for the host to join the meeting. |
guestJoinUri |
NSString * |
Link for guests to join the meeting. |
vmrConferenceId |
NSString * |
ID of the meeting held in the cloud meeting room. |
role |
Role. |
|
orgId |
NSString * |
Enterprise ID of the meeting. If an enterprise ID reported in corpId in the login result is different from the enterprise ID of the meeting, an external contact joins the meeting. |
customInfo |
NSString * |
User-defined information (meeting details and in-meeting chat messages). |
Precautions
- Set the HWMSocialShareHandler proxy during SDK initialization or set the proxy on the target page.
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