Google TV Anymote 协议定义了几个可以发送到 GTV 设备的请求。
我使用了fling事件,它基本上被翻译成 GTV 上的意图,请求消息中指定的 URI 是意图中的 URI。
我不确定在哪里使用数据事件,或者它在发送到 GTV 设备时如何被解释。
是否可以将一些任意数据发送到特定应用程序(设置过滤器)?如果不是,它是用来做什么的?它是否也只是转换为意图?
这是消息定义:
// Sends a string and a type to interpret this string
message Data {
// The type of data sent to the box
required string type = 1;
// The data sent to the box
required string data = 2;
}