I am currently attempting to retrieve all questions tagged with ipv4 from stackoverflow using the stackoverflow API. However, I encountered the following error message:
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:3000' is therefore not allowed access.
I have already registered my application with Stack Exchange, but I am unsure how to authenticate it.
If you could provide assistance, a tutorial or documentation would be greatly appreciated.
Below is the code snippet that I am currently using:
$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);
});