Hello!
I just have a quick question on updating profiles. I've been getting back an invalid json error ("Invalid item block in the input: data is not properly json-encoded") when hitting the following URL:
...v4/catalog/update?api_key=
and the following JSON:
[{"item":{"item_id":"royks","artist_name":"Royksopp"}},{"item":{"item_id":"inter","artist_name":"Interpol"}}]
I tried the following CURL command to try and isolate the problem from my javascript call:
curl -X POST "http://developer.echonest.com/api/v4/catalog/update" -F "api_key=
I've run my JSON through JSLint, so not sure what I'm missing.
Thanks!!