我正在尝试与google驱动器集成,以便我的应用可以通过google drive与#34; Open With ..."一起启动。我相信我已经遵循了文档。我已发布我的应用程序以测试用户..在某些时候谷歌驱动器要求允许将我的应用程序添加到谷歌驱动器。
但我的应用程序未显示在"打开..."或者"创建新的..."
我的应用和其他可行的应用之间的一个区别是,在此页面上:
https://accounts.google.com/IssuedAuthSubTokens?hl=en
有效的应用有:"按文件Drive API"在他们旁边
我的应用说"磁盘API"
这是我的清单
{
"name": [hidden],
"description": [hidden],
"version": "0.0.0.2",
"manifest_version": 2,
"container": "GOOGLE_DRIVE",
"api_console_project_id" : [hidden],
"icons": {
"128": "icon_128.png"
},
"app": {
"urls": [
"http://www.trainyourvision.org/"
],
"launch": {
"web_url": "http://www.trainyourvision.org/painter/"
}
},
"gdrive_mime_types": {
"http://drive.google.com/intents/opendrivedoc": [
{
"type": ["image/png", "image/jpeg", "image/gif", "application/vnd.google.drive.ext-type.png",
"application/vnd.google.drive.ext-type.jpg","application/vnd.google.drive.ext-type.gif",
"application/vnd.google.drive.ext-type.psd"
],
"href": "http://www.trainyourvision.org/painter/",
"title" : "Open",
"disposition" : "window"
}
]
},
"requirements": {
"3D": {
"features": ["webgl"]
}
}
}
任何指导意见。