node.js - iTunes Rank API(Sales and Trends) return empty value -


sales , trends reporting api returning empty array object after 03-aug-2017. have response in api call till 03-aug-2017.

https://reportingitc2.apple.com/api/data/ranked

var itc = require("itunesconnect"); var report = itc.report;  var itunes = new itc.connect('xxxxxx', 'yyyyy'); var query = report('ranked', {                      start:'yyyy-mm-dd',                     end:'yyyy-mm-dd',  }); itunes.request(query, function(error, result) {    console.log(result); }); 

data available in site.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -