Questions tagged [beatsmusic]

Developer API for accessing the Beats Music platform

40 questions
0
votes
1 answer

c# beats music api cover

How do I get bigger album cover images on beats music web api? I've written a c# method to grab the cover, but I always get a 200x200px image. There is an option to set the size of the picture, but there's always this error…
cramopy
  • 3,459
  • 6
  • 28
  • 42
0
votes
1 answer

Get Currently Playing Track in BeatsMedia API?

Perhaps I am missing it... but is there a method in the BeatsMusic API that allows me to find out which song a user is currently listening to? https://developer.beatsmusic.com/docs
Jason Axelrod
  • 7,155
  • 10
  • 50
  • 78
0
votes
1 answer

API to add album or a playlist to a playlist

Is there any API to add the contents of an album or a existing playlist to a new playlist? Based on the current documentation, it seems that only addition of a track to a playlist is supported. I'm hoping to avoid bulk add (by fetching the content…
ethan
  • 59
  • 5
0
votes
1 answer

API to like a track in beats

Is there any API to "like" a track? Something similar to the native beats application. I would like the same ability. I couldn't find any such API in https://developer.beatsmusic.com/docs.
ethan
  • 59
  • 5
0
votes
1 answer

Logout API for beats music service

I'm able to login into Beats service on behalf of the resource owner. Is there any API to logout from Beats service? I don't see any documentation to sign out.
ethan
  • 59
  • 5
0
votes
1 answer

How to be a Beat's partner application?

I'm trying to develop a new Android Application using Beats API. How do i register my app as a partner application that way i can use the authentication meant for Privileged Application.
ethan
  • 59
  • 5
0
votes
1 answer

Exchanging Code for Access Token

I am continually getting a 403 when trying to exchange the code for the access token. I have double checked the URI and it seems to match the scheme prescribed. Here is the URI I am using:…
Erstad.Stephen
  • 1,035
  • 7
  • 9
0
votes
1 answer

Get EchoNest or Foreign ID from Beats Music ID?

I want to get EchoNest metadata for tracks coming from Beats Music. Beats has a certain track ID, and I am trying to find a way to connect that to a usable track ID for EchoNest, which takes Spotify IDs, MusicBrainz, etc.
0
votes
1 answer

Playback of Beatsmusic audio API not working

I have followed the instructions here to no avail: https://developer.beatsmusic.com/docs/read/web_playback_api/Getting_Started Everything loads, but no music plays. I have also tried their simple example: …
0
votes
1 answer

Custom URL parameters for the beats music App

The beats music App on iOS seems to support the url beatsmusic:// . I am trying to find if the App supports parameters to the URL (say track ID or playlist etc.). I tried the beats developer documentation but could not find any references to their…
0
votes
1 answer

API to get all user's actions history

There seems to be an api to post "play" events, but no way to retrieve user's play history. Can you suggest a way to do that? It would be great to also get user's "love" and "ban" track events as well.
Aeon
  • 6,467
  • 5
  • 29
  • 31
0
votes
1 answer

Beats token request yields invalid_client error

Per https://developer.beatsmusic.com/docs/read/getting_started/Web_Server_Applications, I'm successfully getting the authorization code. I'm then performing the below curl post request and I'm receiving a "invalid_client" error in response. Note…
Bryan Schoen
  • 741
  • 5
  • 3
0
votes
1 answer

Beats Music API returns m3u8 for audio playback?

I want to be able to stream music on a mobile device. Does the Beats Music API allow a m3u8 file asset to be returned? Right now, only a RTMP stream is returned for audio playback.
newsum
  • 13
  • 2
0
votes
1 answer

JSONP Callback not working for Beats Music API

I'm trying to use the API via JSONP - making a request like: https://partner.api.beatsmusic.com/v1/api/search/federated?callback=beatsCallback&q=cats&client_id=XXXXX But the response just comes back as pure json - not wrapped in a callback. Are…
paulpooch
  • 651
  • 1
  • 7
  • 15
0
votes
2 answers

How do I use RTMP with Beats Music?

I'm having trouble using RTMP with the Beats Music playback API. What library should I use to get playback working?