I am trying to get all of the questions with the tag ipv4 in stackoverflow using the api of stackoverflow. But i have the following error No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3000' is therefore not allowed access.
I have registered my app at stack exchange. But i dont know how to authentify it.
Can you help, a tutorial or documentation is more than welcome
Here is my code for the moment :
$http.get( "http://api.stackexchange.com/docs/questions#order=desc&sort=activity&tagged=ipv4&filter=!BHMIbze0EPheMk572h0ktETsgnphhU&site=stackoverflow&run=true")
.success(function(data) {
console.log(data);
});