2016-07-05 7 views
1

Outlook用の最初のオフィスアドインを店舗に提出しようとしていますが、2013年のOutlook Webaccessにより拒否されています。2013年にはサポートしない1.3 APIを使用しようとしていますが、検証チームは、まだこのページでOWA 2013マニフェストバージョンの検証Office365アドイン

のためにテストされているMicrosoftはっきり1.1がOWA 2013 http://dev.office.com/reference/add-ins/outlook/tutorial-api-requirement-sets

検証チームからのコメントのために必要であると述べていることである: あなたのアドインがで働いていませんInternet Explorer 11を搭載したWindows 7上のOutlook 2013クライアント。ユーザーはHogiaに認証することができません。 O365とHogiaの認証後、認証ポップアップは閉じますが、ユーザはログインしていません。

Fiddlerトレースで404エラーは表示されなくなりましたが、ユーザはタスクペインにログインしていません。アドインは使用できません。

2016 /オンラインでのみ使用できるAPIを使用しているために2013 SP1をサポートしていない場合は、これらのapisをマニフェストのrequirementsタグに配置する必要があります。 2016 /オンラインでのみ利用可能なAPIを使用していない場合は、2013 SP1をサポートする必要があります。

以下は、私たちの匿名マニフェストです。アドインを1.3に制限する方法に関するアイデア。 xml-namespaceも1.3でなければならないのでしょうか?

<?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> 
+0

Outlook Web App 2013(Exchange 2013に同梱されているOWAのオンプレミス版)とOutlook 2013 for Windowsを混乱させると思います。検証レポート全体を見ることなく、私は決定的な答えを出すことができませんが、Exchange 2013のOWAではなく、Windows用のOutlook 2013 SP1では機能していないため、アドインにフラグが立てられていると思います。 –

+0

そうかもしれない。上記の検証からの回答全体を提供しました。 – forsmyr

+0

ええ、問題はWindows用のOutlook 2013でした。サインインの問題は、正しく受信したトークンの後にリダイレクトすることに関するものでした。 Windows用のOutlook 2013内のブラウザは、アドレス欄に同じURLを持っていたので、ブラウザはリダイレクトする必要がないと確信していました。 – forsmyr

答えて

0

この問題はOAuthの周りであることを考えると、私はDialog APIを見てお勧めします。このAPIの中心的な目的の1つは、このようなシナリオを処理することです。

これは、Outlook 2013のターゲティングに興味がないことを前提としています。 Dialog APIには、現在2016年にのみサポートされているメールボックス1.4が必要です。 Outlook 2013上ではアドインが表示されません。

関連する問題