I can not get the data in any way, I want to parse the user's inventory, I used to do it via php, but because of frequent calls from the ip server I put the steam on a temporary ban, I decided to move the parsing to the client.
Пробовал как через Ajax, так и через XMLHttpRequest
Here is the code I use:
Ajax:
$.ajax({ type: 'GET', url: "http://steamcommunity.com/profiles/"+steamid+"/inventory/json/730/2", jsonpCallback: 'jsonCallback', dataType: 'jsonp', success: function( data ) { console.log( data ); }, error: function(e) { console.log('errorrrrrrrrrr', e.message); } }); I can not understand what's the matter, help please

