Tagged Questions

Last.fm is a music website that also provides an API, allowing others to build their own programs using Last.fm's music data.

learn more… | top users | synonyms

5
votes
2answers
189 views

Rate Limiting Calls To an Api Using Cache in ColdFusion

Hi I am using ColdFusion to call the last.fm api, using a cfc bundle sourced from here. I am concerned about going over the request limit, which is 5 requests per originating IP address per second, ...
4
votes
4answers
351 views

HTTP Get Request in JQuery to Last.fm

I'm trying to make an HTTP Get request using JQuery, but I get an empty string as a response, so I figure I'm doing something wrong. I used the documentation from http://api.jquery.com/jQuery.get/ as ...
3
votes
1answer
4k views

TypeError: coercing to Unicode: need string or buffer, User found

i have to crawl last.fm for users (university exercise). I'm new to python and get following error: Traceback (most recent call last): File "crawler.py", line 23, in <module> for f in ...
2
votes
1answer
44 views

Last.fm won't return artist image

I'm trying to fetch and apply an artist image from Last.fm to an ImageView, but there isn't any image being returned. I'm not sure what I'm doing wrong here. private void setLastFmArtistImage() { ...
2
votes
1answer
41 views

lastfm json response 'undefined'

I just started messing around with the lastfm API and I'm not sure why the response from chart.getlovedtracks is coming back undefined, using this code: $(document).ready(function(){ var apiKey = ...
2
votes
2answers
439 views

HTTP Post Request: target server failed to response

Hey, I want to build a simple android app for loving the recent track. I receive the song with user.getRecentTrack and send the data and session key to my method but there is an error: "The target ...
2
votes
2answers
109 views

Not being able to deserealize this XML

Just for some fun I was playing with the API of Last.fm. The XML file they return for top artists is structured like this: <lfm status="ok"> <topartists user="xbonez" type="overall"> ...
2
votes
1answer
366 views

Simple way of getting the Last.fm artist image for recently listened songs?

On the Last.fm website, your recently listened track include the 34x34 (or whatever size) image at the left of each song. However, in the RSS feed that they give you, no image URLs are provided for ...
2
votes
2answers
1k views

jQuery + get.JSON + Last.FM problems

I am trying to customize this script so that instead of a user's recent tracks it will display a user's favourite artists. This is what I have come up with, however it doesn't work whatsoever. I ...
2
votes
7answers
1k views

How fast is simplexml_load_file()?

I'm fetching lots of user data via last.fm's API for my mashup. I do this every week as I have to collect listening data. I fetch the data through their REST API and XML: more specifically ...
1
vote
0answers
90 views

Last.fm API call from Android application

I'm trying to make last.fm API call from android application using this package: http://www.u-mass.de/lastfm From simple java command line program, it works, but not in android application. Using ...
1
vote
0answers
29 views

Can't get lastfm API to work correctly in Flash-Builder

i have been trying to get the lastfm api working in flash builder. Just as a test, i have been trying to receive profile images from the hyped bands. I can send the request, but i have a problem with ...
1
vote
0answers
30 views

Is is possible to get scrobbling from information from last.fm API

I am getting information about the track I am listening to from last.fm.. I cannot however get the information about what I am scrobbling from, like you see on you last.fm page: "scrobbling now from ...
1
vote
1answer
60 views

get json object with # in object name using jquery

i'm using the recentracks api from lastFm: www.last.fm/api/show?service=278 i used these sources to see how to use it: api.jquery.com/jQuery.getJSON/ ...
1
vote
1answer
226 views

OSError: [Errno 22] Python PHP Problem

I asked a similar question prior but i finally got further along in solving it, but now i am stuck. I am running python on a webserver on dreamhost. I shell into it using putty and run my python ...
1
vote
3answers
730 views

PHP exec python not working

hey yall. Im running python on a webserver from dreamhost. I am using their install of python and am using a lastfm module that can be found here: http://code.google.com/p/python-lastfm/ to get it ...
1
vote
2answers
371 views

Creating/Accessing a JSON object using jQuery $.ajax with Last.FM API

I've recently changed my site design and now need to use dynamic AJAX requests for my data. Basically, I'm trying to retrieve user data using the Last.FM API in JSON format. I'm newish to this, ...
1
vote
1answer
282 views

How to use Last.fm XML-RPC response with CodeIgniter?

A few days ago I had posted a questions about how to Request user recenttracks from lastfm with codeigniter and xmlrpc The request works fine, but still i can't figure out how to use the ...
1
vote
1answer
91 views

Last.fm event venues query

I'm currently building an application to return gigs in the selected city, e.g. Edinburgh using the last.fm geo.getEvents API. It's going well, but I'd like to categorise each gig under its ...
1
vote
1answer
261 views

last.fm API pagination

I'm creating a last.fm/ google maps mashup, plotting gig map markers for whatever city you search for. A last.fm API response is like this: <events location="New York" page="1" totalpages="105" ...
1
vote
2answers
132 views

Adding RDF model from lastfm.rdfize.com

I am programming in Java, trying to make a simple RDF Store using Jena library and lastfm.rdfize.com website. I'm getting into the following problem: the lastfm.rdfize.com produces an rdf, for ...
1
vote
1answer
117 views

Error in the file returned from a request to the Last.FM API

I'm using the Last.fm API with jquery as follows: $.getJSON('http://ws.audioscrobbler.com/2.0/?JSONCallback=?',{ method: "user.getweeklytrackchart", user: "rj", api_key: ...
1
vote
1answer
69 views

With the last.fm API, is there a way to get the top tracks for a time period with a supplied start and end date?

Is there anyway to use user.getTopTracks for a time period, with a start and end, as opposed to a time duration? I know you can send a period parameter such as 7day, 3month etc, which returns the top ...
1
vote
2answers
160 views

Last.fm client source code / SVN

I have already asked in their forums ([1], [2]) but I don't seem to get an answer there. It seems that the official Lastfm SVN (svn://svn.audioscrobbler.net/clientside/Last.fm) is not updated anymore ...
1
vote
4answers
6k views

PHP cURL error: “Empty reply from server”

All, I have a class function to interface with the RESTful API for Last.FM - its purpose is to grab the most recent tracks for my user. Here it is: private static $base_url = ...
1
vote
1answer
155 views

Why do API's (like Facebook, last.fm etc) generate session keys for logged in users?

I am building an RESTful API for an application I am working on and client coders need to be able to submit data to the API on behalf of a user. All the popular API's I've used require me to send the ...
1
vote
2answers
730 views

Last.FM API parse with PHP

I'm new to this so bear with my noobish question. Basically I want a user to enter a search phrase into a web-form and for the query to be passed to the lastFM API and return top artists using that ...
1
vote
1answer
153 views

What is a striping error?

I'm trying to convert last.fm xml data into rdf using xslt and am getting this error: ERROR [http-8080-1] (RDFDefaultErrorHandler.java:40) - (line 3 column 24): {E202} Expecting XML start or end ...
1
vote
1answer
848 views

Parsing Last.fm feed onto website using PHP

I'm trying to parse the Last.fm feed of my last 10 tracks played onto my website. This is what I have so far, <?php $doc = new DOMDocument(); ...
0
votes
1answer
48 views

Last.FM cannot return more than 500 records when using pylast program

I use pylast to get information from Last.fm API. When I use the code below: #!/usr/bin/env python import pylast API_KEY = "############################" API_SECRET = ...
0
votes
1answer
27 views

A small piece of code which attract top_tracks from Last.fm API by pylast software

I modified the code published on smbrown.wordpress.com which can extract the top tracks using the Last.fm API as below: #!/usr/bin/python import time import pylast import re from md5 import ...
0
votes
1answer
23 views

I want to get the all the song's tags through Last.fm API by Pylast

experts, I currently want to use all the song's tags in a research project. Of course, I have Pylast on my hand. But there is no detailed doc about Pylast. Then, is there anyone can tell me how to ...
0
votes
0answers
70 views

Display Artist Info from Last.FM API

Having recently had some problems with my code which calls for artist data fed from Last.FM API, I'm looking for a different solution but am struggling to find a nice easy way to handle the problem. ...
0
votes
2answers
107 views

Playing LastFM Playlist with Javascript Music Player

I want to play a playlist from LastFM.com and I know Soundmanager2 and some other scripts for playing sound and music. So I need an out-of-the-box working solution, a jQuery / Javascript Last FM ...
0
votes
2answers
63 views

Music tag finder API .NET library

I'm trying to build an application that can be used to automatically get music tag information from the web and rename my music library. I have been searching on google for any API available to help ...
0
votes
2answers
96 views

get json object with jquery without using the $.each

i'm using the recenttracks api from lastFm: www.last.fm/api/show?service=278 i'm fetching the json format with jquery: ...
0
votes
1answer
94 views

Last.fm invalid method signature (playlist.addTrack)

I am trying to add an "artist - song" entry to one of my playlists on last.fm from the command line. I applied for an API key and got a session key as described in the last.fm API documentation. I ...
0
votes
1answer
67 views

Last FM API SIG_ABRT error

I'm getting a SIG_ABRT error in the one line within the else of this method in the FMCallback class of the Last FM API. - (void)fire { if(_identifier == nil) { [_target performSelector:_selector ...
0
votes
3answers
188 views

Python Not Importing

So i downloaded the lastfm api for python made by people. found here: http://code.google.com/p/python-lastfm/ I have a website hosting through dreamhost. I wasnt able to build the module using: ...
0
votes
2answers
144 views

Aggregating Data in Rails 3

I want to aggregate data from different sources, Twitter lastfm and that sort. I just can't figure out how to store the data. Clearly in a database but I can't figure out how abstract to make the ...
0
votes
1answer
223 views

Request user recenttracks from lastfm with codeigniter and xmlrpc

Hey geeks! I'm trying to get some information from last.fm with Codeigniter. $this->load->library("xmlrpc"); $this->xmlrpc->server("http://ws.audioscrobbler.com/2.0/", 80); ...
0
votes
2answers
1k views

Read xml nodes values from web service

I am trying to read xml nodes values from lastfm web service that look like this: <lfm status="ok"> <results for="stinkfist" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/"> ...
0
votes
1answer
1k views

Decoding gzip (using PHP sockets)

Ok, so there is this PHP implementation of Last.FM API some guy wrote and I'm using it for a small project of mine. His implementation doesn't request gzipped data from Last.FM servers so I decided to ...
0
votes
2answers
314 views

How do I send in a REST request (to use an API)?

I'm writing a small web app for myself in Rails and I want it to use Last.fm's API. I'm incredibly new to web development in general, so I'm not sure where to even begin. http://www.last.fm/api/rest ...
0
votes
1answer
97 views

jquery get function not working, even though the URL of the request works fine?

I'm using jquery to access a method of the Last.FM API. Here is my jquery code: ...
0
votes
1answer
155 views

preview iTunes/Last.fm tracks from withing app

Is it possible to allow users to preview music from either Last.fm or iTunes from within my app? Are apple OK with apps streaming preview clips of music in apps? This is a monotouch app. w://
0
votes
3answers
309 views

Getting error on inserting tuple values in postgreSQL table using python

I want to keep last.fm's user recent music tracks list to postgresql database table using pylast interface.But when I tried to insert values to the table it shows errors.Code example: import pylast ...
0
votes
1answer
103 views

User location information mapping with lastfm music track history in python

I have two separate python scripts. One is for getting user location information (which I get from web based geofeed provider.User Gsm is registerd with that services).Another is for retrieving lastfm ...
0
votes
1answer
111 views

Last.fm API: are Etag/Last-Modified headers supported?

When using the REST interface for Last.fm web service, are the "Etag" and/or "Last-Modified" HTTP headers provided in the responses? E.g. let's say I plan on using the track.getTags API method, is ...
0
votes
1answer
255 views

Last.fm API - Track Duration

I'm using the Last.fm API and I stuck on something seemingly fairly simple. One of the responses is the duration. Which is returned as: 222000 But how do I format (in PHP) this to look like ...

1 2