2012-03-14 40 views
1

我剛剛爲我們的一個內部Web應用程序重新編寫身份驗證,以依賴Google Apps與OpenID聯合登錄,並且它工作得很好。但是,爲了成爲完美的解決方案,我想知道是否可以將內部應用程序添加到Google Apps頂部欄上的更多鏈接,您可以在其中看到Google Apps marketplace應用程序?將內部Web應用程序添加到Google Apps

我想也許唯一的方法就是在App Engine上部署?

回答

1

您可以在Google Apps market的地方創建列表。您不必公開您的列表,也可以將其保留爲公司內部使用,並仍將其部署到您的GAPPS for Business中。

在市場部署時,您必須提供一個manifest file,它定義了「更多鏈接」。谷歌稱這是通用導航。 基本上,清單中需要這樣的東西:

<!-- Show this link in Google's universal navigation for all users --> 
    <Extension id="navLink" type="link"> 
    <Name>AppTest</Name> 
    <Url>http://www.example.com/home.php?from=google&amp;domain=${DOMAIN_NAME}</Url> 
    <!-- This app also uses the Calendar API --> 
    <Scope ref="calendarFeed"/> 
    </Extension> 
相關問題