3

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

是否有任何用于 LiveMeeting 集成的开放 API?

4

1 回答 1

3

好吧,在 Google 上快速搜索 LiveMeeting API 就会出现这个链接

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

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

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

要在对此请求的回复中接收会议邀请文本,需要将 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>
于 2011-01-07T20:51:52.910 回答