我希望使用Mirror API在Google Glass时间轴中插入HTML格式的卡片。我正在使用PHP PHP镜像客户端API。它将消息和图像作为参数,并在后台显示该图像。像这样:
insert_timeline_item($mirror_service, $new_timeline_item, "image/jpeg", file_get_contents($image_url));
任何有关在PHP客户端库中使用自定义卡视图的帮助都会受到高度重视。谢谢。
答案 0 :(得分:2)
自定义卡片视图将由您在$new_timeline_item
变量中设置的HTML表示。
您可以使用https://developers.google.com/glass/tools-downloads/playground
上的Mirror API Playground设计HTML您可以使用
之类的内容将其设置为$ new_timeline_item变量$html = '<article class="photo">'.
' <img src="attachment:0" width="100%" height="100%">'.
' <div class="overlay-gradient-tall-dark"/>'.
' <section>'.
' <p class="text-auto-size">Based on Hybrid Template</p>'.
' </section>'.
'</article>';
$new_timeline_item->setHtml( $html );
“attachment:0”的img网址表示使用第一个附件作为图像。 HTML的其余部分基于Playground上“混合”模板生成的HTML - 您可以根据需要进行调整。