Questions tagged [rdio]

Rdio is a music subscription service with an API.

Rdio is a subscription-based music subscription service available in over 50 countries. The service has an API available to developers to create their own music-related applications.

21 questions
6
votes
2 answers

static library function name conflict between Rdio and Google Core library

Problem This is happening with two static libraries where I don't have access to the source code. I'm trying to install the Rdio SDK into my project (using these instructions). My project already uses a lot of Google's services, and there seems to…
abbood
  • 23,101
  • 16
  • 132
  • 246
4
votes
1 answer

Error when accessing Rdio oauth API with dispatch in scala

I am trying to use scala dispatch to access the Rdio API like this: import dispatch.url import dispatch.Http import dispatch.Defaults.executor import dispatch._ import com.ning.http.client.oauth.ConsumerKey import dispatch.oauth._ val consumer =…
Daniel Cukier
  • 11,502
  • 15
  • 68
  • 123
2
votes
1 answer

Can't get Rdio iOS SDK playback to work

I'm messing around with Rdio's iOS SDK. I've set up everything correctly in "Getting Started" outlined here (http://www.rdio.com/developers/docs/libraries/ios/). The track key in the app delegate works and plays after I launch the app. Now I'm…
May Yang
  • 523
  • 1
  • 5
  • 18
2
votes
0 answers

I get NameError when extending Python's Rdio module

I've been using Python to access the Rdio API a fair bit so decided to add a couple methods to the Rdio module to make life easier. I keep getting stymied. Here, as background, is some of the Rdio Python module provided by the company: class Rdio: …
Barrett
  • 161
  • 1
  • 1
  • 9
2
votes
0 answers

Rails 3.2 OmniAuth with Rdio Error - 403 OAuth Not Authorized

I'm trying to use OmniAuth to authenticate with Rdio - my app already successfully authenticates with Twitter using an Omniauth strategy Tried using the omniauth-rdio gem and it seems to be failing: https://github.com/nixme/omniauth-rdio Any…
Bobby Matson
  • 1,448
  • 12
  • 14
1
vote
2 answers

Does the Rdio Desktop API give tracks unique IDs?

I've built a small desktop app for myself that logs listens from iTunes and Rdio so I can create powerful playlists based on how I listen to music over time, but it requires each track to have a unique ID that will never change, regardless of which…
Brandon Durham
  • 7,096
  • 13
  • 64
  • 101
1
vote
1 answer

ld: 1 duplicate symbol for architecture armv7, clang: error: linker command failed with exit code 1 (use -v to see invocation)

I am using two third party SDKs in my application, rdio and mySpin, which was working great. Now I am updating my mySpin in application and getting the following issue:
Anupam Mishra
  • 3,408
  • 5
  • 35
  • 63
1
vote
1 answer

Oauth 1.0a in Django

I'm trying to make authorised calls on the Rdio API in my Django application. I've been looking at the following tutorial so far to get it set up: http://www.rdio.com/developers/docs/web-service/oauth/ref-oauth1-overview The code at the bottom of…
benwad
  • 6,414
  • 10
  • 59
  • 93
1
vote
1 answer

Play Rdio.com song streaming

I'm trying to implement online music search and sample streaming features for an iOS app: the user may be able to search music by song name/artist/album and reproduce them. I found Rdio.com looks promising, however, can't figure out a way to solve…
ssantos
  • 16,001
  • 7
  • 50
  • 70
1
vote
1 answer

What are the Rdio Web Service API's rate limits?

Does Rdio's Web Service API have rate limits? Can't seem to find it in the docs or with a quick search, but I'm getting 403 Developer Over Qps from scripted calls to the search endpoint.
hurrymaplelad
  • 26,645
  • 10
  • 56
  • 76
0
votes
1 answer

Applescript for controlling iTunes and Rdio

I have an Applescript I use in conjunction with Alfred that plays or pauses the current track in iTunes or Rdio, depending on which I have open. In my script Rdio takes precedence because I always have iTunes open and only open Rdio when I need it…
Brandon Durham
  • 7,096
  • 13
  • 64
  • 101
0
votes
1 answer

How do I access rdio API?

This is what I have: $.ajax({ type:'get', url: 'https://services.rdio.com/api/1/', dataType: "JSONP", method: 'getTopCharts' success: function(data) { console.log(data); } }) I'm not very good with using APIs. I would like to get…
M K
  • 11
  • 2
0
votes
1 answer

Unable to use Resource owner credentials of Oauth2 for Rdio

We are using rdio to get music from rdio in our app. We have used OAuth2.0 for authentication. Currently we are using authorization code. I am exploring to switch to Resource owner credentials documented in…
0
votes
1 answer

The searchSuggestions method returns no albums

I need to find albums using the "Mozart" query. When I use Rdio API Console. it returns several albums. But in case of the curl utility, it returns nothing. {"status": "ok", "result": []} For searching I use the following command: curl -X POST…
user1627760
0
votes
1 answer

400 Error with Javascript Rdio API

Any thoughts on why I'm getting a "Failed to load resource: the server responded with a status of 400 (Bad Request)" in the Javascript on my client? (client-id obscured, I have one for an Oauth2.0 app via registration Rdio site) index.html:
john hight
  • 91
  • 6
1
2