无法使 chromecast 示例 ios 应用程序正常工作

Posted

技术标签:

【中文标题】无法使 chromecast 示例 ios 应用程序正常工作【英文标题】:Unable to get chromecast sample ios app to work 【发布时间】:2013-08-09 17:11:08 【问题描述】:

这是我到目前为止所做的: 1) 从 Github (cast-ios-sample) 下载示例 ios 应用程序

2) 让我的设备被 Google 列入白名单并收到 App ID,类似这样,当然更改了,但看起来类似于此 abcdefgh-1234-5678-abcd-abcdefghijkl。

3) 将receiver.html 文件更新为

// Initialize and start the media playing receiver
var receiver = new cast.receiver.Receiver('abcdefgh-1234-5678-abcd-abcdefghijkl', [cast.receiver.RemoteMedia.NAMESPACE], "", 5);

4) 在 AWS S3 存储桶中加载 receiver.html 并将其公开(我可以从浏览器下载该文件,因此我确认它是公开的)。 5)在xcode中,修改GCKAppDelegate.m如下:

NSLog(@"Setting receiver url.");
//self.host = @"http://www.yourdomain.com/yourreceiver.html";
self.host = @"http://name_of_bucket.amazonaws.com/receiver.html";

6) 在xcode中,修改GCKViewController.m如下: NSLog(@"开始会话。"); [self.mSession startSessionWithApplication:@"abcdefgh-1234-5678-abcd-abcdefghijkl" 参数:self.applicationArgument];

7) 我能够运行应用程序,并且可以在应用程序中看到我的 Chormecast,但是当我选择它时,我在 xcode 控制台中收到以下错误:

2013-08-09 11:49:20.746 ChromecastDemoApp[16077:c07] executing a GCKStartApplicationRequest with url=http://172.17.1.11:8008/apps/abcdefgh-1234-5678-abcd-abcdefghijkl
2013-08-09 11:49:20.747 ChromecastDemoApp[16077:c07] started POST request for: http://172.17.1.11:8008/apps/abcdefgh-1234-5678-abcd-abcdefghijkl and data: <GCKMimeData: 0xf8089c0>
2013-08-09 11:49:20.748 ChromecastDemoApp[16077:c07] Selected device: ChromecastXXXX
2013-08-09 11:49:20.796 ChromecastDemoApp[16077:c07] httpRequest:didCompleteWithStatusCode:404:data:0 bytes
2013-08-09 11:49:20.796 ChromecastDemoApp[16077:c07] Request failed with error: 5
2013-08-09 11:49:20.796 ChromecastDemoApp[16077:c07] tearDownSessionWithError: Error   Domain=com.google.GCKFramework.GCKApplicationSessionError Code=1 "failed to start application (com.google.GCKFramework.GCKApplicationSessionError)"
2013-08-09 11:49:20.797 ChromecastDemoApp[16077:c07] all teardown steps complete
2013-08-09 11:49:20.797 ChromecastDemoApp[16077:c07] GCK Session failed to start: Error Domain=com.google.GCKFramework.GCKApplicationSessionError Code=1 "failed to start application (com.google.GCKFramework.GCKApplicationSessionError)"

8) 我无法通过访问 localhost:9222 来让我的 Web 控制台正常工作。

对我做错的任何帮助将不胜感激。

【问题讨论】:

1.示例代码似乎有问题 - 我会看看是否可以修复它。无需从客户端发送 Receiver URL。您可以传递您希望接收器使用的内容。 【参考方案1】:

    示例代码似乎有问题 - 我会看看能否修复它。无需从客户端发送 Receiver URL。您可以传递您希望接收器使用的内容。

    要查看您的设备是否被列入白名单,它应该是来自 Chrome 的 :9222。如果这不起作用,请确保将您的设备设置为 [x] 将序列号发送给 Google。没有它,您的设备永远不会被列入白名单。 (我们不知道是你)

【讨论】:

【参考方案2】:

实际并未使用 mAppDelgate.host。重要的部分是应用程序 ID。确保正确输入:

[self.mSession startSessionWithApplication:@"YOUR_APP_ID" 论据:self.applicationArgument];

并且您使用该应用 ID 注册的接收者 URL 与您的接收者匹配。 404错误让我觉得我们用你的app_id注册的URL可能有错误。

【讨论】:

以上是关于无法使 chromecast 示例 ios 应用程序正常工作的主要内容,如果未能解决你的问题,请参考以下文章

从示例井字游戏开始的 Chromecast 应用程序 - 无法启动应用程序:请求失败

将静态图像从 iOS 应用程序发送到 Chromecast?

Chromecast 接收器应用程序无故终止

使用默认接收器时如何调试 chromecast?

iOS chromecast 应用程序连接但未使用新框架启动

Chromecast 无法播放已保存的视频