我刚刚为我们的某个内部网络应用程序重新编写了身份验证,以依赖使用OpenID的Google Apps联合登录,而且效果很好。但是,要想成为一个完全完美的解决方案,我想知道是否可以将内部应用程序添加到Google Apps顶部栏上的更多链接,您可以在其中列出Google Apps市场应用程序?
我想也许唯一的办法就是在App Engine上部署?
答案 0 :(得分: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&domain=${DOMAIN_NAME}</Url>
<!-- This app also uses the Calendar API -->
<Scope ref="calendarFeed"/>
</Extension>