Если делаю так
this.getCountOk = function (url, id) { var num; var okUrl = 'https://connect.ok.ru/dk?st.cmd=extLike&tp=json&ref=' + url; $.ajax({ url: okUrl, crossDomain: true, type: 'GET', dataType: 'json', headers: { "X-Requested-With": "XMLHttpRequest" }, xhrFields: { withCredentials: true }, success: function (data) { num = data.count || 0; icms.rating_photo_competition.voteSoc(id, 'ok', num); } }); }
Подскажите способ получения количества постов ссылки в ОК, или обход CORS.