I need some help because after reading the dailymotion api and multiple sources couldn't figure out what was the problem. i am trying to fetch data from dailymotion fro a specific video id by:
$.getJSON('https://api.dailymotion.com/video/' + encodeURIComponent(videoid) + '?fields=title,duration,user&callback=?', function(data) {
$.each(data, function(i, item){
console.log(item);
});
});
but keep responding:
"Invalid parameter `_' for `GET /video/<id>'"
but the problem is that when trying to hit the same url to the browser i take a response of json.
I tried to make it work with .getScript function but again no result.
$.getScript('https://api.dailymotion.com/video/' + encodeURIComponent(videoid) + '?fields=title,duration,user&callback=dailymotion_fetch_data_callback');
and after that to read it through :
function dailymotion_fetch_data_callback(data) {
$.each(data, function(i, item){
console.log(item);
}); }
Can you please help me and show me a way how i can read the json respond after pushing data to a callback function?
encodeURIComponent(videoid)is returning '_'. – Brian Driscoll Nov 4 '11 at 18:13callback=?from your query string. That's messing things up, and is unnecessary given that you have defined an anonymous function to handle the output. – Brian Driscoll Nov 4 '11 at 18:41