可以从Java或C#发送LiveMeeting邀请吗?我最感兴趣的是Java API。
有没有用于LiveMeeting集成的开放应用程序接口?
发布于 2011-01-08 04:51:53
好吧,在谷歌上快速搜索一下LiveMeeting API就会找到this link。
更具体地说,它看起来完全是基于XML的,所以您应该能够从Java调用它。下面是我能找到的最接近发送邀请的信息。
在FieldList中创建请求邀请文本的会议audienceInviteText/presenterInviteText
通过Live meeting API创建会议不会自动生成会议邀请电子邮件。相反,您可以请求在CreateMeetingReply消息中返回会议邀请文本。返回的文本可以粘贴到您在API外部生成的电子邮件中。返回的文本与使用Live meeting管理器创建会议时返回的文本相同。
若要在对此请求的答复中接收会议邀请文本,需要在FieldList中包含audienceInviteText。以下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
Microsoft Office Live Meeting.

https://www.livemeeting.com/cc/contoso/join?id=name10&role=attend&pw=auPa%24%24w0rd



AUDIO INFORMATION
Audio has not been set up for this meeting.


FIRST-TIME USERS
To save time before the meeting, check your system to make sure it is
ready to use Microsoft Office Live Meeting. 
 http://go.microsoft.com/fwlink/?linkid=52354

TROUBLESHOOTING 
Unable to join the meeting? Follow these steps:
 1. Copy this address and paste it into your Web browser:
 https://www.livemeeting.com/cc/contoso/join
 2. Copy and paste the required information:
 Meeting ID: name10
 Entry Code: auPa$$w0rd
 Location: https://www.livemeeting.com/cc/contoso/join
If you still cannot enter the meeting, contact support:
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
Microsoft Office Live Meeting.

 https://www.livemeeting.com/cc/contoso/xmlapi6/join?id=name10&role=present&pw=prPa%24%24w0rd



AUDIO INFORMATION
Audio has not been set up for this meeting.


FIRST-TIME USERS
To save time before the meeting, check your system to make sure it is
ready to use Microsoft Office Live Meeting. 
 http://go.microsoft.com/fwlink/?linkid=52354

TROUBLESHOOTING 
Unable to join the meeting? Follow these steps:
 1. Copy this address and paste it into your Web browser:
 https://www.livemeeting.com/cc/contoso/join
 2. Copy and paste the required information:
 Meeting ID: name10
 Entry Code: prPa$$w0rd
 Location: https://www.livemeeting.com/cc/contoso/join
If you still cannot enter the meeting, contact support:
http://r.office.microsoft.com/r/rlidLiveMeeting?p1=7&p2=en_US&p3=LMInfo&p4=support" name="presenterInviteText">
</StringOption>
</OptionList>
</MeetingReply>
</CreateMeetingReply>
</PlaceWareConfCenter>https://stackoverflow.com/questions/4630099
复制相似问题