I made some javascript to get the object from the api. Now the error show that I dont have access control? what should I do?
<script type="text/javascript">
function getLatest(){
var data = {};
$.ajax({
url: 'http://api.rappler.com/index.php?option=com_rappler&task=mobileapi.getarticlelist&limit=5&catid=23',
data: data
});
console.log(data);
}
</script>