last.fm - 获取专辑 last.fm api 的发布日期

标签 last.fm

我需要获取歌曲的发行日期。

在 last.fm API 中,如文档中所述,足以向服务器发出 HTTP 请求,它将使用包含字段“”的 XML(或 JSON)进行回复(如示例响应中所示在网站上)。

问题是,如果我调用文档中的相同请求,除了我需要的字段外,回复是相同的。

是否可以通过其他方式获取此信息?

例子:

  • 网站中的示例响应部分:

    <album>
      <name>Believe</name>
      <artist>Cher</artist>
      <id>2026126</id>
      <mbid>61bf0388-b8a9-48f4-81d1-7eb02706dfb0</mbid>
      <url>http://www.last.fm/music/Cher/Believe</url>
      <releasedate>6 Apr 1999, 00:00</releasedate> //i need this
      <image size="small">...</image>
      <image size="medium">...</image>
      <image size="large">...</image>
      <listeners>47602</listeners>
      <playcount>212991</playcount>
      <toptags>
        <tag>
          <name>pop</name>
          <url>http://www.last.fm/tag/pop</url>
        </tag>
        ...
      </toptags>
      <tracks>
        <track rank="1">
          <name>Believe</name>
          <duration>239</duration>
          <mbid/>
          <url>http://www.last.fm/music/Cher/_/Believe</url>
          <streamable fulltrack="0">1</streamable>
          <artist>
            <name>Cher</name>
            <mbid>bfcc6d75-a6a5-4bc6-8282-47aec8531818</mbid>
            <url>http://www.last.fm/music/Cher</url>
          </artist>
        </track>
        ...
      </tracks>
    </album>

  • 我的回复

    <album>
    <name>Believe</name>
    <artist>Cher</artist>
    <mbid>63b3a8ca-26f2-4e2b-b867-647a6ec2bebd</mbid>
    <url>https://www.last.fm/music/Cher/Believe</url>
    <image size="small">
    https://lastfm.freetls.fastly.net/i/u/34s/3b54885952161aaea4ce2965b2db1638.png
    </image>
    <image size="medium">
    https://lastfm.freetls.fastly.net/i/u/64s/3b54885952161aaea4ce2965b2db1638.png
    </image>
    <image size="large">
    https://lastfm.freetls.fastly.net/i/u/174s/3b54885952161aaea4ce2965b2db1638.png
    </image>
    <image size="extralarge">
    https://lastfm.freetls.fastly.net/i/u/300x300/3b54885952161aaea4ce2965b2db1638.png
    </image>
    <image size="mega">
    https://lastfm.freetls.fastly.net/i/u/300x300/3b54885952161aaea4ce2965b2db1638.png
    </image>
    <image size="">
    https://lastfm.freetls.fastly.net/i/u/300x300/3b54885952161aaea4ce2965b2db1638.png
    </image>
    <listeners>405536</listeners>
    <playcount>2644726</playcount>
    <tracks>
    ...
    <tags>...</tags>
    <wiki>...</wiki>
    </album>
    </lfm>

请求是http://ws.audioscrobbler.com/2.0/?method=album.getinfo&api_key=MY_API_KEY&artist=Cher&album=Believe

该信息所在的页面是:https://www.last.fm/api/show/album.getInfo

非常感谢!

最佳答案

Last.fm API 文档与实际响应肯定存在不一致。

唯一可能提供此类信息的地方是 artist.getTopAlbums,但那里也没有发布日期。

因此,要回答您的问题,不,无法通过 API 获取专辑的发行日期。如果您真的想要这条信息,最好的办法是通过网络抓取从 html 页面本身中提取它,并且在这种情况下不要依赖 API。

关于last.fm - 获取专辑 last.fm api 的发布日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59839319/

相关文章:

java - HTTP POST 请求发送 403 错误。无效的方法签名

python - 引发连接错误(连接中止,BadStatusLine): using python and Last. fm API

php - 解码gzip(使用PHP套接字)

python - 尝试为 track.getSimilar 调用 last.fm Rest api,在 python 中无法理解响应

json - 在 Swift 中解析 JSON 不起作用

javascript - 无法将轨道(批量)记录到 Last.fm API。方法签名无效

http - Chrome 中带有 HTTP 302 重定向的 HTML5 音频

javascript - 如果调用函数时提供的参数包含空格,则不会调用函数

android - Last.fm API 为所有艺术家返回相同的 "white star"图像

Python 和 pylast - AttributeError : 'NoneType' object has no attribute 'encode' python