Sonos Music API实施"无法浏览音乐"错误

时间:2016-02-23 19:02:33

标签: sonos

我正在尝试实施SMAPI服务,但遇到了一些问题。

我已经构建了一个“fake” service,它为这些端点提供了硬编码响应:

  • getMediaURI
  • getLastUpdate
  • getMediaMetadata
  • 的getMetaData
  • getExtendedMetadata
  • getSessionId

我已按照添加自定义服务的说明操作,保留所有功能未选中

我看到我的Sonos iPhone应用程序上列出了我的新测试服务,但是当我选择它时,我会看到一个屏幕说“#34;无法浏览音乐"。

我不确定如何调试发生的事情,所以觉得我在黑暗中刺伤。我不想以推测的方式进行改变,这可能与问题无关 - 这似乎是浪费大量精力的一种方法。

有没有办法看到Sonos Controller应用程序(客户端)所遇到的错误?我已查看了http://[device ip]:1400/support/aggregate日志,但没有看到任何提及我服务的域名,或看到任何看似相关的内容。

我知道(至少有一些)请求正在响应我的服务,特别是致电getLastUpdategetMetadata。这是日志的输出:

2016-02-23T18:55:24.316373+00:00 app[web.1]: Started POST "/soap/action" for 213.86.218.202 at 2016-02-23 18:55:24 +0000
2016-02-23T18:55:24.316485+00:00 app[web.1]: Started POST "/soap/action" for 213.86.218.202 at 2016-02-23 18:55:24 +0000
2016-02-23T18:55:24.431603+00:00 app[web.1]: Processing by SoapController#get_last_update as HTML
2016-02-23T18:55:24.431611+00:00 app[web.1]: Processing by SoapController#get_last_update as HTML
2016-02-23T18:55:24.438452+00:00 app[web.1]: params.inspect: {}
2016-02-23T18:55:24.438458+00:00 app[web.1]: params.inspect: {}
2016-02-23T18:55:24.447855+00:00 app[web.1]:   Rendered vendor/bundle/ruby/2.2.0/gems/wash_out-0.10.0/app/views/wash_out/document/response.builder (7.6ms)
2016-02-23T18:55:24.447907+00:00 app[web.1]:   Rendered vendor/bundle/ruby/2.2.0/gems/wash_out-0.10.0/app/views/wash_out/document/response.builder (7.6ms)
2016-02-23T18:55:24.448279+00:00 app[web.1]: Completed 200 OK in 17ms (Views: 9.5ms | ActiveRecord: 0.0ms)
2016-02-23T18:55:24.457801+00:00 app[web.1]: Started POST "/soap/action" for 213.86.218.202 at 2016-02-23 18:55:24 +0000
2016-02-23T18:55:24.448327+00:00 app[web.1]: Completed 200 OK in 17ms (Views: 9.5ms | ActiveRecord: 0.0ms)
2016-02-23T18:55:24.464365+00:00 app[web.1]: Processing by SoapController#get_metadata as HTML
2016-02-23T18:55:24.457861+00:00 app[web.1]: Started POST "/soap/action" for 213.86.218.202 at 2016-02-23 18:55:24 +0000
2016-02-23T18:55:24.464428+00:00 app[web.1]: Processing by SoapController#get_metadata as HTML
2016-02-23T18:55:24.465101+00:00 app[web.1]: params.inspect: {"id"=>"root", "index"=>0, "count"=>100}
2016-02-23T18:55:24.465154+00:00 app[web.1]: params.inspect: {"id"=>"root", "index"=>0, "count"=>100}
2016-02-23T18:55:24.472056+00:00 app[web.1]:   Rendered vendor/bundle/ruby/2.2.0/gems/wash_out-0.10.0/app/views/wash_out/document/response.builder (3.4ms)
2016-02-23T18:55:24.472049+00:00 app[web.1]:   Rendered vendor/bundle/ruby/2.2.0/gems/wash_out-0.10.0/app/views/wash_out/document/response.builder (3.4ms)
2016-02-23T18:55:24.472248+00:00 app[web.1]: Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.0ms)
2016-02-23T18:55:24.472251+00:00 app[web.1]: Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.0ms)

非常感谢任何帮助!

更新 这是使用SoapUI向我的假服务发出请求的输出:

  1. getLastUpdate

    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.sonos.com/Services/1.1">
       <soap:Body>
          <tns:getLastUpdateResponse>
             <getLastUpdateResult>
                <catalog>Catalog last updated 2016-02-18 11:52:30</catalog>
                <favorites>User: Rob last updated favorites 2016-02-18 12:01:00</favorites>
                <pollInterval>30</pollInterval>
             </getLastUpdateResult>
          </tns:getLastUpdateResponse>
       </soap:Body>
    </soap:Envelope>
    
  2. getSessionId

    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.sonos.com/Services/1.1">
       <soap:Body>
          <tns:getSessionIdResponse>
             <getSessionIdResult>user0001</getSessionIdResult>
          </tns:getSessionIdResponse>
       </soap:Body>
    </soap:Envelope>
    
  3. getMetadata

    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.sonos.com/Services/1.1">
       <soap:Body>
          <tns:getMetadataResponse>
             <getMetadataResult>
                <index>0</index>
                <count>2</count>
                <total>2</total>
                <mediaMetadata>
                   <id>some_id_1</id>
                   <title>Title 1</title>
                   <mimeType>audio/mp4</mimeType>
                   <itemType>track</itemType>
                   <displayType>List</displayType>
                   <summary>Summary text 1. Summary text 1. Summary text 1.</summary>
                   <trackMetadata>
                      <artistId/>
                      <artist/>
                      <composerId/>
                      <composer/>
                      <albumId/>
                      <album/>
                      <albumArtURI/>
                      <albumArtistId/>
                      <albumArtist/>
                      <genreId/>
                      <genre/>
                      <duration/>
                      <canPlay/>
                      <canSkip/>
                      <canAddToFavorites/>
                      <rating/>
                      <trackNumber/>
                   </trackMetadata>
                   <streamMetadata></streamMetadata>
                </mediaMetadata>
                <mediaMetadata>
                   <id>some_id_2</id>
                   <title>Title 2</title>
                   <mimeType>audio/mp4</mimeType>
                   <itemType>track</itemType>
                   <displayType>List</displayType>
                   <summary>Summary text 2. Summary text 2. Summary text 2.</summary>
                   <trackMetadata>
                      <artistId/>
                      <artist/>
                      <composerId/>
                      <composer/>
                      <albumId/>
                      <album/>
                      <albumArtURI/>
                      <albumArtistId/>
                      <albumArtist/>
                      <genreId/>
                      <genre/>
                      <duration/>
                      <canPlay/>
                      <canSkip/>
                      <canAddToFavorites/>
                      <rating/>
                      <trackNumber/>
                   </trackMetadata>
                   <streamMetadata></streamMetadata>
                </mediaMetadata>
             </getMetadataResult>
          </tns:getMetadataResponse>
       </soap:Body>
    </soap:Envelope>
    
  4. getExtendedMetadata

    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.sonos.com/Services/1.1">
       <soap:Body>
          <tns:getExtendedMetadataResponse>
             <getExtendedMetadataResult>
                <mediaMetadata>
                   <id>some_id_1</id>
                   <title>Title 1</title>
                   <mimeType>audio/mp4</mimeType>
                   <itemType>track</itemType>
                   <displayType>List</displayType>
                   <summary>Summary text 1. Summary text 1. Summary text 1.</summary>
                   <trackMetadata>
                      <artistId/>
                      <artist/>
                      <composerId/>
                      <composer/>
                      <albumId/>
                      <album/>
                      <albumArtURI/>
                      <albumArtistId/>
                      <albumArtist/>
                      <genreId/>
                      <genre/>
                      <duration/>
                      <canPlay/>
                      <canSkip/>
                      <canAddToFavorites/>
                      <rating/>
                      <trackNumber/>
                   </trackMetadata>
                   <streamMetadata></streamMetadata>
                </mediaMetadata>
             </getExtendedMetadataResult>
          </tns:getExtendedMetadataResponse>
       </soap:Body>
    </soap:Envelope>
    
  5. getMediaMetadata

    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.sonos.com/Services/1.1">
       <soap:Body>
          <tns:getMediaMetadataResponse>
             <getMediaMetadataResult>
                <id/>
                <title>Fake Track Title</title>
                <mimeType>audio/mp4</mimeType>
                <itemType>track</itemType>
                <displayType/>
                <summary/>
                <trackMetadata>
                   <artistId>artist:12345</artistId>
                   <artist>Bach</artist>
                   <composerId/>
                   <composer/>
                   <albumId/>
                   <album/>
                   <albumArtURI>https://sonos.therocketfuel.com/images/istockphoto_1945235_satisfaction.jpg</albumArtURI>
                   <albumArtistId/>
                   <albumArtist/>
                   <genreId/>
                   <genre>Classical</genre>
                   <duration>459</duration>
                   <canPlay>true</canPlay>
                   <canSkip>true</canSkip>
                   <canAddToFavorites>false</canAddToFavorites>
                   <rating/>
                   <trackNumber/>
                </trackMetadata>
                <streamMetadata></streamMetadata>
             </getMediaMetadataResult>
          </tns:getMediaMetadataResponse>
       </soap:Body>
    </soap:Envelope>
    
  6. getMediaURI

    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.sonos.com/Services/1.1">
       <soap:Body>
          <tns:getMediaURIResponse>
             <getMediaURIResult>https://sonos.therocketfuel.com/audio/960bpm.m4a</getMediaURIResult>
          </tns:getMediaURIResponse>
       </soap:Body>
    </soap:Envelope>
    

2 个答案:

答案 0 :(得分:1)

解决方案

我终于明白了,基本上我的服务是返回有效的XML,但这对于WSDL架构来说是不正确的。

我使用SoapUI调试了这个,如下所示:

  1. 创建一个新的SOAP项目

    • 项目名称:无论你喜欢什么
    • 初始WSDL:指向服务提供WSDL的位置
    • 同时选中“创建请求”和“创建TestSuite”
  2. 在TestSteps文件夹上按住Ctrl键单击(右键单击),然后单击“添加步骤”,然后选择“SOAP请求”

  3. 给它任何你喜欢的名字(我用过例如actionName_validate)

  4. 选择要验证的SOAP操作/操作

  5. 确保勾选“添加架构断言(添加验证响应符合其架构)”的复选框,然后单击“确定”

  6. 从左侧列表中双击新创建的测试步骤并运行它(单击左上方的绿色播放按钮)

  7. 如果您的服务响应符合WSDL,您会在左下方看到一个绿色圆圈,其中显示“断言”。如果没有,它将是红色的,它将为您提供一份完整的清单,列出您的回复中的所有错误。

  8. 逐个修复您的架构的任何问题,直到它为绿色

  9. 如果您使用Ruby

    ,则需要额外的详细信息

    另外,这里有一些可以帮助处理这种情况的人的细节,特别是如果你在Ruby中构建你的服务......

    Ruby中SOAP服务的工具不如Java(甚至是PHP)。我使用的是wash_out gem,虽然它对于一个全新的SOAP服务很有用,却没有足够的表达能力来定义与官方Sonos WSDL相匹配的类型映射等。我也无法让它生成正确的XML响应(它错过了所需的关键xmlns属性,或者不会命名所有元素。)

    我通过使用模板手动提供XML响应来解决这个问题,因为这是最简单的方法。您可以使用.xml.erb模板,也可以使用带有builder模板的xml .xml.builder语法。实际上,您可以以任何方式生成XML,例如to_xml或其他一些演示者类型库。

    对于WSDL,我转而使用官方的Sonos SMAPI WSDL,只是在底部更改服务地址,指向我的服务提供此修改后的WSDL的位置。

答案 1 :(得分:0)

您是否尝试过使用SoapUI,添加端点并直接点击它以查看您的回复内容?