3
Google雲端硬盤共享對話框突然停止與我們的Google雲端硬盤集成的應用程序工作。尋找到它,這是什麼時候showSettingsDialog
通話時出現的消息:未安裝ID爲「XXXXXXXX」的應用程序
事情我已經檢查:
- 應用通過Chrome Web Store的
- App domain & URL is registered with the Google Drive SDK 安裝
- The "Drive Open URL" is the same as the page I'm calling
showSettingsDialog
上。 - 應用程序是Google Drive上我的文件類型的默認應用程序。
- 的
manifest.json
contains the appropriateapi_console_project_id
- I've included the necessary
drive.install
範圍在我的OAuth流
在我的項目沒有任何變化,它剛剛開始發生。這是我的ShareClient
代碼:我manifest.json
定義
gapi.load('drive-share', function() {
var client = new gapi.drive.share.ShareClient("<API_PROJECT_ID>");
/* Some Angular Stuff */
drive.setItemIds(itemsArray);
drive.showSettingsDialog();
});
哪裏API_PROJECT_ID
是一樣的api_console_project_id
。