是否可以从Java或C#发送LiveMeeting邀请? [关闭]

问题描述 投票:3回答:1

是否可以从Java或C#发送LiveMeeting邀请?我最感兴趣的是Java API。

是否有用于Live Meeting集成的开放API?

java c# microsoft-live-meeting
1个回答
3
投票

好吧,快速谷歌搜索LiveMeeting API会出现this link

更具体地说,它看起来都是基于XML的,因此您应该能够从Java调用它。以下是最接近发送我可以找到的邀请。

在FieldList中的audienceInviteText / presenterInviteText中创建请求邀请文本的会议

通过Live Meeting API创建会议不会自动生成会议邀请电子邮件。相反,您可以请求在CreateMeetingReply消息中返回会议邀请文本。返回的文本可以粘贴到您在API外部生成的电子邮件中。返回的文本与使用Live Meeting管理器返回以创建会议的文本相同。

要在对此请求的回复中接收会议邀请文本,需要将audienceInviteText包含在FieldList中。以下XML请求将发送到会议中心。

选项audienceInviteText和presenterInviteText只能包含在createMeeting请求的FieldList部分中,因为会议中心会自动生成返回的信息。通过回复返回的信息可以包含在电子邮件消息中,然后会议创建者可以将其发送给会议观众/演示者以便于访问会议。

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
   <CreateMeetingRequest name="status" title="Tailspin Toys Status Meeting" maxUsers="25">
      <OptionList>
         <TimeOption name="startTime" value="2006-12-01T18:00:00Z" />
         <DecimalOption name="duration" value="1800" />
         <StringOption name="audiencePassword" value="auPa$$w0rd" />
         <StringOption name="presenterPassword" value="prPa$$w0rd" />
      </OptionList>
      <FieldList>
         <Name>audienceInviteText</Name>
         <Name>presenterInviteText</Name>
      </FieldList>
   </CreateMeetingRequest>
</PlaceWareConfCenter>

以下代码显示了XML回复。

<PlaceWareConfCenter>
   <CreateMeetingReply>
      <MeetingReply>
         <OptionList>
            <StringOption value="Jeff Hay has invited you to attend an online meeting using&#xD;&#xA;Microsoft Office Live Meeting.&#xD;&#xA;&#xD;&#xA;https://www.livemeeting.com/cc/contoso/join?id=name10&role=attend&pw=auPa%24%24w0rd&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;AUDIO INFORMATION&#xD;&#xA;Audio has not been set up for this meeting.&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;FIRST-TIME USERS&#xD;&#xA;To save time before the meeting, check your system to make sure it is&#xD;&#xA;ready to use Microsoft Office Live Meeting. &#xD;&#xA; http://go.microsoft.com/fwlink/?linkid=52354&#xD;&#xA;&#xD;&#xA;TROUBLESHOOTING &#xD;&#xA;Unable to join the meeting? Follow these steps:&#xD;&#xA;  1. Copy this address and paste it into your Web browser:&#xD;&#xA;     https://www.livemeeting.com/cc/contoso/join&#xD;&#xA;  2. Copy and paste the required information:&#xD;&#xA;        Meeting ID: name10&#xD;&#xA;        Entry Code: auPa$$w0rd&#xD;&#xA;        Location: https://www.livemeeting.com/cc/contoso/join&#xD;&#xA;If you still cannot enter the meeting, contact support:&#xD;&#xA;http://r.office.microsoft.com/r/rlidLiveMeeting?p1=7&p2=en_US&p3=LMInfo&p4=support" name="audienceInviteText">
            </StringOption>
            <StringOption value="Jeff Hay has invited you to present an online meeting using&#xD;&#xA;Microsoft Office Live Meeting.&#xD;&#xA;&#xD;&#xA; https://www.livemeeting.com/cc/contoso/xmlapi6/join?id=name10&role=present&pw=prPa%24%24w0rd&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;AUDIO INFORMATION&#xD;&#xA;Audio has not been set up for this meeting.&#xD;&#xA;&#xD;&#xA;&#xD;&#xA;FIRST-TIME USERS&#xD;&#xA;To save time before the meeting, check your system to make sure it is&#xD;&#xA;ready to use Microsoft Office Live Meeting. &#xD;&#xA; http://go.microsoft.com/fwlink/?linkid=52354&#xD;&#xA;&#xD;&#xA;TROUBLESHOOTING &#xD;&#xA;Unable to join the meeting? Follow these steps:&#xD;&#xA;  1. Copy this address and paste it into your Web browser:&#xD;&#xA;     https://www.livemeeting.com/cc/contoso/join&#xD;&#xA;  2. Copy and paste the required information:&#xD;&#xA;        Meeting ID: name10&#xD;&#xA;        Entry Code: prPa$$w0rd&#xD;&#xA;        Location: https://www.livemeeting.com/cc/contoso/join&#xD;&#xA;If you still cannot enter the meeting, contact support:&#xD;&#xA;http://r.office.microsoft.com/r/rlidLiveMeeting?p1=7&p2=en_US&p3=LMInfo&p4=support" name="presenterInviteText">
            </StringOption>
         </OptionList>
      </MeetingReply>
   </CreateMeetingReply>
</PlaceWareConfCenter>
© www.soinside.com 2019 - 2024. All rights reserved.