我正在尝试使用外部PHP脚本在Google Glass中插入/更新时间轴卡。最终的目标是每次进行更改时从Eclipse插件调用脚本,并使用插件中的新数据更新Glass时间轴卡。这可能吗?例如,如何从我在Apache服务器上运行的PHP脚本向Google Glass插入“Hello,World!”卡?我搜索了Google和Stack Overflow,但还没有找到解释如何执行此操作的任何内容。 My Glass应用程序使用Mirror API。
提前感谢您的帮助!
修改 我想使用我的PHP脚本向Glass中插入一个简单的时间轴卡。根据Google开发人员指南,原始HTTP应如下所示:
POST /mirror/v1/timeline HTTP/1.1
Host: www.googleapis.com
Authorization: Bearer {auth token}
Content-Type: application/json
Content-Length: 26
{ "text": "Hello world" }
如何在PHP中编写上述代码以允许我将时间轴卡插入Glass?
此外,如果我的Apache服务器和Glass应用程序在不同的端口上运行,是否可以进行此操作?
答案 0 :(得分:1)
这是一个PHP函数,它使用Google PHP API Client Library插入一个简单的时间轴项。它是从官方timeline insert reference docs复制的。
/**
* Insert a new timeline item in the user's glass with an optional
* notification and attachment.
*
* @param Google_MirrorService $service Authorized Mirror service.
* @param string $text timeline item's text.
* @param string $contentType Optional attachment's content type (supported
* content types are "image/*", "video/*"
* and "audio/*").
* @param string $attachment Optional attachment content.
* @param string $notificationLevel Optional notification level,
* supported values are {@code null}
* and "AUDIO_ONLY".
* @return Google_TimelineItem Inserted timeline item on success, otherwise.
*/
function insertTimelineItem($service, $text, $contentType, $attachment,
$notificationLevel) {
try {
$timelineItem = new Google_TimelineItem();
$timelineItem->setText($text);
if ($notificationlevel != null) {
$notification = new Google_NotificationConfig();
$notification->setLevel($notificationLevel);
$timelineItem->setNotification($notification);
}
$optParams = array();
if ($contentType != null && $attachment != null) {
$optParams['data'] = $attachment;
$optParams['mimeType'] = $contentType;
}
return $service->timeline->insert($timelineItem, $optParams);
} catch (Exception $e) {
print 'An error occurred: ' . $e->getMessage();
return null;
}
}
您需要一个初始化的PHP客户端库(或使用Mirror API的任何PHP代码)才能工作。如果您刚开始使用PHP和Mirror API,我建议您试用PHP quick start project。