ios DemoCast播放器Chromecast“;不支持应用程序“;

ios DemoCast播放器Chromecast“;不支持应用程序“;,ios,google-cast,chromecast,Ios,Google Cast,Chromecast,在获得chromcast白名单并收到应用程序ID后,我从github和ios SDK下载了DemoCastPlayer。以下是我设置和运行应用程序的步骤 1) set up the ios project with the cast framework, changed [YOUR_APP_NAME] with google supplied app ID 2) In the app bundle Root.plist changed Default Value to

在获得chromcast白名单并收到应用程序ID后,我从github和ios SDK下载了DemoCastPlayer。以下是我设置和运行应用程序的步骤

   1) set up the ios project with the cast framework,
      changed [YOUR_APP_NAME]  with google supplied app ID
   2) In the app bundle Root.plist changed Default Value to point to 
      http://mywebiste.com/cc/rcvr/media.xml
   3) I uploaded the example receiver.html with the app ID & medial.xml to my website 
       https://mywebiste.com/rcvr/receiver.html 


  Unfortunately Im getting the following Error white Discovering the Devices :

   scanStarted

   -[GCKNetworkRequest performHTTPGet:timeout:]  started GET request 
    for: http://192.168.1.101:8008/ssdp/device-desc.xml

   -[GCKNetworkRequest httpRequest:didCompleteWithStatusCode:finalURL:headers:data:]  
     httpRequest:didCompleteWithStatusCode:200:data:1082 bytes

   -[GCKNetworkRequest performHTTPGet:timeout:]  
     started GET request for: http://192.168.1.101:8008/apps/%5B7a479924-b922-41a0-ae85-05b27a9582b1%5D

   -[GCKNetworkRequest httpRequest:didCompleteWithStatusCode:finalURL:headers:data:] 
    httpRequest:didCompleteWithStatusCode:404:data:0 bytes

   **-[GCKApplicationSupportFilterListener networkRequest:didFailWithError:] 
     Device <0x1fda9d70:GCKDevice> Chromecast0704 (64cb88c8-9617-8099-8d1c-8218b784ae25)
     does not support app [7a479924-b922-41a0-ae85-xxxxxxxxxxxx]**

  I doubled checked that both my receiver.html file and ios application have the same ID 
   and the send chromcast serial number to google is set . 

  Any Idea how to solve that issue ? 
1)使用cast框架设置ios项目,
使用谷歌提供的应用程序ID更改了[你的应用程序名称]
2) 在应用程序包中,Root.plist将默认值更改为指向
http://mywebiste.com/cc/rcvr/media.xml
3) 我将示例receiver.html和app ID&media.xml上传到我的网站
https://mywebiste.com/rcvr/receiver.html 
不幸的是,我在查找设备时遇到以下错误:
扫描开始
-[GCKNetworkRequest performHTTPGet:timeout:]已启动获取请求
用于:http://192.168.1.101:8008/ssdp/device-desc.xml
-[GCKNetworkRequest httpRequest:didCompleteWithStatusCode:finalURL:headers:data:]
httpRequest:didCompleteWithStatusCode:200:data:1082字节
-[GCKNetworkRequest performHTTPGet:超时:]
已开始获取以下项的请求:http://192.168.1.101:8008/apps/%5B7a479924-b922-41a0-ae85-05b27a9582b1%5D
-[GCKNetworkRequest httpRequest:didCompleteWithStatusCode:finalURL:headers:data:]
httpRequest:didCompleteWithStatusCode:404:数据:0字节
**-[GCKApplicationSupportFilterListener网络请求:didFailWither错误:]
设备Chromecast0704(64cb88c8-9617-8099-8d1c-8218b784ae25)
不支持应用程序[7a479924-b922-41a0-ae85-XXXXXXXXXX]**
我仔细检查了receiver.html文件和ios应用程序是否具有相同的ID
设置发送chromcast到google的序列号。
你知道如何解决这个问题吗?

谢谢

您的appId周围有额外的“[”和“]”,请将它们从任何地方删除,包括从您的接收器文件中删除,然后重试

真是个疏忽,但非常感谢你帮助阿里先生。