javascript-last.fm-api
javascript-last.fm-api copied to clipboard
last.fm API bindings for JavaScript
It seems like the method user.getPersonalTracks is a typo since there is no such API call. Is this in fact user.getPersonalTags?
The track.scrobble method looks like it should take a session parameter to pass on to signedCall.
Hi @fxb, thanks for the great work with this library! There are numerous open PRs that would be great to merge. In particular, I want to support CommonJS (module.exports) and...
e.g. md5 of Chinese word '你好' should be 7ECA689F0D3389D9DEA66AE112E5CFD7 but current caculated is 52a90a58a24523da1b9d09124b1f3861
Lastfm accepts only utf-8 charset. So replace: doc.write('<form method="post" action="' + apiUrl + '" id="form">'); to doc.write('<form method="post" action="' + apiUrl + '" id="form" accept-charset="UTF-8"><input name="iehack" type="hidden" value="&#9760;" />'); thx!
Hi, Great lib! However, the documentation is lacking a bit (maybe a needed update)... I've checked the source and in fact you have implemented several things that require auth, including...