我們正在嘗試向商店提交我們的第一個辦公室外觀插件,但由於Outlook webaccess 2013而被拒絕。我們正在嘗試使用2013年不應該支持的1.3api,但是驗證團隊仍然爲OWA 2013清單版本的驗證Office365插件
測試在這個頁面上微軟明確指出,1.1所需的OWA 2013 http://dev.office.com/reference/add-ins/outlook/tutorial-api-requirement-sets
從驗證團隊的評價是: 外接程序不工作Windows 7上安裝Internet Explorer 11的Outlook 2013客戶端。用戶無法向Hogia進行身份驗證。在對O365和Hogia進行身份驗證後,身份驗證彈出窗口關閉,但用戶未登錄。
404錯誤不再在Fiddler跟蹤中看到,但用戶未登錄到任務窗格,並且加載項不可用。
如果您不支持2013 SP1,因爲您使用的API僅適用於2016/Online,則必須將這些API放在清單中的需求標記中。如果您未使用僅在2016年/在線提供的API,則必須支持2013 SP1。
以下是我們的匿名清單。關於如何限制插件只有1.3的任何想法。這可能是也應該是1.3的xml命名空間嗎?
<?xml version="1.0" encoding="utf-8"?>
<!-- For more information on using transformations
see the web.config examples at http://go.microsoft.com/fwlink/?LinkId=214134. -->
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0"
xmlns:mailappor="http://schemas.microsoft.com/office/mailappversionoverrides/1.0"
xsi:type="MailApp">
<Id>0ada1ef7-1cea-4e3a-b946-a234e777d07b</Id>
<Version>1.0.0.0</Version>
<ProviderName>Provider</ProviderName>
<DefaultLocale>sv-SE</DefaultLocale>
<DisplayName DefaultValue="Name"/>
<Description DefaultValue="Description"/>
<IconUrl DefaultValue="url" />
<HighResolutionIconUrl DefaultValue="url" />
<SupportUrl DefaultValue="url" />
<Hosts>
<Host Name="Mailbox" />
</Hosts>
<Requirements>
<Sets>
<Set Name="Mailbox" MinVersion="1.3" />
</Sets>
</Requirements>
<!-- These elements support older clients that don't support add-in commands -->
<FormSettings>
<Form xsi:type="ItemEdit">
<DesktopSettings>
<SourceLocation DefaultValue="url"/>
</DesktopSettings>
<TabletSettings>
<SourceLocation DefaultValue="url"/>
</TabletSettings>
<PhoneSettings>
<SourceLocation DefaultValue="url"/>
</PhoneSettings>
</Form>
</FormSettings>
<Permissions>ReadWriteMailbox</Permissions>
<Rule xsi:type="RuleCollection" Mode="Or">
<Rule xsi:type="ItemIs" ItemType="Appointment" FormType="Edit" />
</Rule>
<DisableEntityHighlighting>false</DisableEntityHighlighting>
<VersionOverrides xmlns="http://schemas.microsoft.com/office/mailappversionoverrides" xsi:type="VersionOverridesV1_0">
<Requirements>
<bt:Sets DefaultMinVersion="1.3">
<bt:Set Name="Mailbox" />
</bt:Sets>
</Requirements>
<Hosts>
<Host xsi:type="MailHost">
<DesktopFormFactor>
<!-- Location of the Functions that UI-less buttons can trigger (ExecuteFunction Actions). -->
<FunctionFile resid="functionFile" />
<!-- Message Read -->
<ExtensionPoint xsi:type="AppointmentOrganizerCommandSurface">
<!-- Use the default tab of the ExtensionPoint or create your own with <CustomTab id="myTab"> -->
<OfficeTab id="TabDefault">
<!-- Up to 6 Groups added per Tab -->
<Group id="apptComposeDemoGroup">
<Label resid="groupLabel" />
<!-- Launch the add-in : task pane button -->
<Control xsi:type="Button" id="apptComposeFunctionButton">
<Label resid="funcComposeButtonLabel" />
<Supertip>
<Title resid="funcComposeButtonLabel" />
<Description resid="funcComposeSuperTipDescription" />
</Supertip>
<Icon>
<bt:Image size="16" resid="icon16" />
<bt:Image size="32" resid="icon32" />
<bt:Image size="80" resid="icon80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="functionFile" />
</Action>
</Control>
<!-- Go to http://aka.ms/ButtonCommands to learn how to add more Controls: ExecuteFunction and Menu -->
</Group>
</OfficeTab>
</ExtensionPoint>
<!-- Go to http://aka.ms/ExtensionPointsCommands to learn how to add more Extension Points: MessageRead, AppointmentOrganizer, AppointmentAttendee -->
</DesktopFormFactor>
</Host>
</Hosts>
<Resources>
<bt:Images>
<bt:Image id="icon16" DefaultValue="url"/>
<bt:Image id="icon32" DefaultValue="url"/>
<bt:Image id="icon80" DefaultValue="url"/>
</bt:Images>
<bt:Urls>
<bt:Url id="functionFile" DefaultValue="url"/>
</bt:Urls>
<bt:ShortStrings>
<bt:String id="groupLabel" DefaultValue="Name"/>
<bt:String id="funcComposeButtonLabel" DefaultValue="Name"/>
</bt:ShortStrings>
<bt:LongStrings>
<bt:String id="paneReadSuperTipDescription" DefaultValue="string"/>
<bt:String id="funcComposeSuperTipTitle" DefaultValue="string"/>
<bt:String id="funcComposeSuperTipDescription" DefaultValue="string"/>
</bt:LongStrings>
</Resources>
</VersionOverrides>
</OfficeApp>
我相信你很困惑Outlook Web App 2013(Exchange 2013附帶的OWA的本地版本)和Outlook 2013 for Windows。沒有看到完整的驗證報告,我無法給出明確的答案,但我相信他們將您的加載項標記爲不適用於適用於Windows的Outlook 2013 SP1,而不適用於適用於Exchange 2013的OWA。 –
感謝您的回答,可能是這種情況。我提供了上述驗證的全部響應。 – forsmyr
是的,問題是Windows 2013的Outlook。登錄問題與正確接收令牌後的重定向有關。 Outlook 2013 for windows中的瀏覽器在其地址字段中具有相同的網址,因此瀏覽器認爲它不需要重定向。 – forsmyr