- 从 Google 注册并收到 Chromecast AppId。
- 使用 Chrome API 实现了最简单的发送者。
- 如果我将 YouTube 用于 AppId,则发件人有效,但如果我使用 Google 发送给我的 AppId,则发件人无效。
- 更新了发件人以同时收听两者。我的 Chromecast 显示在 YouTube 列表中,但不在我的 AppId 列表中。
我相信我的发件人是正确的,但我的 Chromecast 未正确列入白名单。现在我该怎么做?
我的 sender.html 中的 JavaScript。我的 AppID 被混淆了。
var myID = 'df7cb8ba-a00b-476b-a9b5-xxxxxxxxxxxx';
var ytID = 'YouTube';
onYtReceiverList = function(list) {
$(".ytreceivers").html("<p>YouTube Receiver List</p>");
for (var i = 0; i < list.length; i++) {
$(".ytreceivers").append("<p>"+list[i].id+"<br/>"+list[i].name+"</p>");
}
};
onMyReceiverList = function(list) {
$(".myreceivers").html("<p>My Receiver List</p>");
for (var i = 0; i < list.length; i++) {
$(".myreceivers").append("<p>"+list[i].id+"<br/>"+list[i].name+"</p>");
}
};
window.addEventListener("message", function(event) {
if (event.source == window && event.data &&
event.data.source == "CastApi" &&
event.data.event == "Hello")
{
$("body").append("<p>Hello received</p>");
cast_api = new cast.Api();
cast_api.addReceiverListener(myID, onMyReceiverList);
cast_api.addReceiverListener(ytID, onYtReceiverList);
}
});