2013-10-18 60 views
0

我試圖使用來自開發者API的示例XML文件加載Google Hangout應用程序,但它無法加載。
它在我加載基本API文件時起作用。嘗試使用開發者API加載Google環聊應用程序

這裏是我的XML文件:

<?xml version="1.0" encoding="UTF-8" ?> 
<Module> 
    <ModulePrefs title="MyApp"> 
    <Require feature="rpc"/> 
    <Require feature="views"/> 
    </ModulePrefs> 
    <Content type="html"> 
    <![CDATA[ 
<script src="//plus.google.com/hangouts/_/api/dev/hangout.js"></script> 
     <!-- Your application code --> 
    ]]> 
    </Content> 
</Module> 

以下是錯誤:

There was an error loading your app!
This app did not load because there appears to be something wrong with it.


我想我錯過在控制檯中的開發者API設置的東西。

回答

0

取消選中Make your application available to all users框可解決問題,因爲在開發人員API模式下運行的應用程序僅對開發人員可見。

相關問題