0

Facebook、Twitter、LastFMへのAPI呼び出しを正常に行い、次の行に沿ったコードを使用して、いいね、フォロワー、リスナーを取得しました。

 def get_twitter
    @artist = Artist.accessible_by(current_ability).find(params[:id])
    if @artist.twitter_screen_name.present?
      require 'open-uri'
      require 'json'
      result = JSON.parse(open("https://api.twitter.com/1/users/show.json?screen_name="<<@artist.twitter_screen_name<<"&include_entities=true").read)
      @followers = result["followers_count"]
    end
  end    

返されるデータセットは1つだけであり、必要なビットにアクセスするのは簡単なので、これは問題なく機能します。LastFMの応答はネストされており、それが私を投げている間、私はリスナーの数にアクセスすることができましたが、上記とほぼ同じですが、次の行を使用しました:

@listeners = result["artist"]["stats"]["listeners"].to_i

今、Songkickからイベントリストを取得しようとしています。明らかに、応答には複数のイベントが含まれているため、応答をループする方法を理解するのに問題があります。

彼らの開発者ガイドはここにあります:http://www.songkick.com/developer/upcoming-events-for-artist

サンプルの応答は次のとおりですが、これは単一のイベントのみを対象としています。

{
  "resultsPage:" {
    "results": { "event": [
      {
        "id":11129128,
        "type":"Concert",
        "uri":"http://www.songkick.com/concerts/11129128-wild-flag-at-fillmore?utm_source=PARTNER_ID&utm_medium=partner",
        "displayName":"Wild Flag at The Fillmore (April 18, 2012)",
        "start":{"time":"20:00:00",
                 "date":"2012-04-18",
                 "datetime":"2012-04-18T20:00:00-0800"},
        "performance":[{"artist":{"uri":"http://www.songkick.com/artists/29835-wild-flag?utm_source=PARTNER_ID&utm_medium=partner",
                                  "displayName":"Wild Flag","id":29835,"identifier":[]},
                        "displayName":"Wild Flag",
                        "billingIndex":1,
                        "id":21579303,
                        "billing":"headline"}],
        "location":{"city":"San Francisco, CA, US","lng":-122.4332937,"lat":37.7842398},
        "venue":{"id":6239,
                 "displayName":"The Fillmore",
                 "uri":"http://www.songkick.com/venues/6239-fillmore?utm_source=PARTNER_ID&utm_medium=partner",
                 "lng":-122.4332937, "lat":37.7842398,
                 "metroArea":{"uri":"http://www.songkick.com/metro_areas/26330-us-sf-bay-area?utm_source=PARTNER_ID&utm_medium=partner",
                              "displayName":"SF Bay Area","country":{"displayName":"US"},"id":26330,"state":{"displayName":"CA"}}},
        "status":"ok",
        "popularity":0.012763
      }, ....
    ]},
    "totalEntries":24,
    "perPage":50,
    "page":1,
    "status":"ok"
  }
}

誰かがポインタを持っていますか?

4

1 に答える 1

1

配列に到達して反復する必要があります。

parsed = JSON.parse(some_json)
events = parsed['resultsPage']['results']['event']
events.each do |event|
  puts event["type"]
  #access other parts of the event
end
于 2012-07-15T01:57:43.680 に答える