2

我正在使用“不使用 SoundCloud 连接屏幕进行身份验证”的身份验证方法(请参阅http://developers.soundcloud.com/docs#authentication)。这就是您提供整个凭证的方法——client_id、client_secret、用户名和密码。我也在使用 Ruby SDK。

# create client object with app and user credentials
client = Soundcloud.new(:client_id => 'YOUR_CLIENT_ID',
                        :client_secret => 'YOUR_CLIENT_SECRET',
                        :username => 'YOUR_USERNAME',
                        :password => 'YOUR_PASSWORD')

我正在尝试使用客户端来解析用户。

puts client.get('/resolve', :url => 'https://soundcloud.com/random-username').inspect

但是,我不断收到401 Unauthorized客户的退货。

我可以确认我正在验证,因为以下执行正常。

puts client.get('/me').username

有没有人知道我做错了什么?

4

1 回答 1

5

我发现您需要client_id在每个请求中都包含您的内容。

puts client.get('/resolve', :url => 'https://soundcloud.com/random-username', client_id: 'YOUR_CLIENT_ID')
于 2013-04-13T09:23:40.040 回答