问题标签 [google-mirror-api]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
google-mirror-api - 访问未配置错误消息
我已经设置了 oauth 并且正在正确检索访问令牌。
这是我从击中得到的回应
https://www.google.com/accounts/AuthSubTokenInfo?access_token=<token>
我认为这正确表明我已请求正确的权限。
打电话给
https://www.googleapis.com/mirror/v1/timeline?access_token=<token>
产量:
"errors"=>[{"domain"=>"usageLimits", "reason"=>"accessNotConfigured", "message"=>"Access Not Configured"}]
很难弄清楚这意味着什么。我没有真正的玻璃硬件。文档看起来好像这个访问令牌允许我向镜像 api 发出任何请求。
我是否需要要求我错过的其他设置或权限?在应用程序方面?这与我的谷歌帐户有关并且没有设置玻璃吗?
编辑:
好的,来自授权文档:
Select the Services tab in your API project, and enable the Google Mirror API.
但是,我没有在服务选项卡上看到 Google Mirror API?
google-mirror-api - What is the proper way of updating subscriptions to the Glass timline when the IP of the target host changes?
Here's a situation that occurred to my team:
- we inserted a Mirror API subscription with a CallbackUrl under a domain we control (the corresponding A record pointed to, say, IP1)
- we verified we could receive Mirror API notifications from Glass devices
- we changed the A record of our domain to point to a new host with a different IP address (let's call it IP2).
- even after propagation of the updated A record, the Mirror API kept sending the notification to IP1 rather than IP2
Is the IP of the host associated with the callback URL cached by the Mirror API ?
Then, we tried the following:
- we deleted the subscription and created a new one. The notifications kept going to IP1
- we uninstalled and re-installed the Glassware, did a new Oauth authorization, etc. We verified that on listing the active subscriptions, they looked "fresh", with a recent "updated" timestamp. However, notifications are go to the old IP address IP1.
Any ideas on what may be going on, and how to overcome this issue?
Thanks in advance!
Also submitted to issue tracker: https://code.google.com/p/google-glass-api/issues/detail?id=36&colspec=ID%20Type%20Status%20Priority%20Owner%20Summary
google-mirror-api - 使用 Mirror API Playground 插入时间线项目?
我一直在玩 Google Glass 的 Mirror API 游乐场。底部的模板非常适合帮助您入门。我已经通过我的 Google API 控制台创建了一个 ClientID 并将其添加到我的 Playground 实例中。
我通读了时间线开发人员指南,对如何将项目插入时间线有点迷茫。我可以使用 Playground 页面上的沙盒输入区域发布到时间线吗?我尝试了一些我在文档中找到的代码变体,但我的时间轴上没有显示任何内容。我也不确定蓝色的“插入项目”按钮与整个沙箱的关系如何
php - 如何从时间线项目下载图像附件?
我为 Google Glass 开发了一个 Mirror API 应用程序,但我被困在一个非常基本的事情上。我想保存时间线项目中的图像。
我不断收到此错误: PHP 警告:imagejpeg() 期望参数 1 是资源
我是 php 新手,所以恐怕我什至不在正确的轨道上。我究竟做错了什么?
google-glass - 镜像 API 游乐场
当我在 Mirror API Playground 上输入获得 Mirror API 授权的应用程序的客户端 ID 并单击授权时,它会打开一个 oAuth 屏幕并显示错误:
google-mirror-api - 访问图像附件的正确方法
当我尝试访问与我的应用程序共享的图像的 contentUrl 时,我得到一个状态码 401。
这是返回给我的 contentUrl:
这些是标题:
缓存控制→私有,max-age=0
内容编码 →gzip
内容长度 →34
内容类型→文本/html;字符集=UTF-8
日期 →2013 年 5 月 6 日星期一 22:39:28 GMT
到期 →2013 年 5 月 6 日星期一 22:39:28 GMT
服务器→GSE
状态 →401 未授权
版本→HTTP/1.1
www-authenticate →Bearer realm="https://www.google.com/accounts/AuthSubRequest"
x-content-type-options →nosniff
x-frame-options →SAMEORIGIN
x-xss-保护→1;模式=块
这是一个错误吗?当 contentType 让我相信可以访问时,我实际上如何访问 jpeg?
google-mirror-api - 手动启动应用程序
用户是否可以启动与玻璃器皿的交互,而不是响应未召唤的卡片?我计划创建一个仅在用户识别的情况下才有用的应用程序。
我梳理了一些文档,没有找到任何描述这一点的东西,但似乎有必要。
php - Google API 重定向将我的应用程序发送到错误的页面
我使用 Google Mirror API 发布了一个应用程序。现在我正在尝试在新的网址 .info 而不是 .com 上设置一个测试版应用程序。但是,当我从 .info 地址授权我的应用程序时,我会被重定向到 .com。我已经三次检查了我的代码中的地址以及我的客户 ID 和机密。什么可能导致这种情况?我将附上我的 API 设置的屏幕截图,尽管它看起来像是关于外星人或其他东西的绝密政府文件。
这是调用客户端的地方。
我知道 $base_url、$api_client_key 和 $api_client_secret 是正确的。
google-api-client - 镜像 API 和 Node.JS
我有一个 node.js 程序,我正在尝试使用 googleapis 模块(https://github.com/google/google-api-nodejs-client)版本 0.2.5-alpha。
我可以毫无问题地使用原始 HTTP 进行调用,因此我知道我在 API 的白名单中,我正在正确地进行身份验证和授权,并且正在请求正确的范围和所有内容。如果我使用相同的 access_token 插入时间线,我会在回调中收到错误。我还发现了 plus API,并且使用此 API 的调用工作正常。
用于发现 API 的代码片段,似乎可以正常工作:
进行调用的代码片段:
回调期间记录的内容:
任何指示什么是“必需的”,如何提供它,或者如何进一步调试诸如此类的错误?
google-mirror-api - 访问菜单项的内置图标?
我知道您可以使用iconUrl
自定义菜单项的自定义图标,但是有没有办法访问内置图标,例如您在确认过程中看到的复选框REPLY
?