0
Soundcloud Resolveエンドポイントは、ドキュメントに記載されているテストケースでも、「SoundCloud :: ResponseError:SoundCloud :: ResponseError」を返します。Soundcloud /エンドポイントを解決しましたか?
require 'soundcloud'
#create client with your app's credentials
client = Soundcloud.new(:client_id => 'YOUR_CLIENT_ID')
# a permalink to a track
track_url = 'http://soundcloud.com/forss/voca-nomen-tuum'
# resolve track URL into track resource
track = client.get('/resolve', :url => track_url)
# result: "SoundCloud::ResponseError: SoundCloud::ResponseError"
他のエンドポイントも正常です。私は何かを逃しているのですか、これは何ですか?
good find。エンドポイントが正しく機能していますか? Rubyクライアントに問題があるように見えます。 – AllTheCodez