Updated on 2023-03-23 GMT+08:00

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;
}
Table 1 Parameter description

Parameter

Type

Description

confInfo

HWMConfStateInfo *

Details about the ongoing meeting.

Table 2 HWMConfStateInfo parameters

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

HWMConfRoleType

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.

Precautions

  1. Set the HWMSocialShareHandler proxy during SDK initialization or set the proxy on the target page.