I have a request key but i do not know how to use it while making an http request. can someone give me an example. here is my code for the moment :
function getQuestionLinks(tag) {
return $q(function(resolve, reject) {
$http.get('https://api.stackexchange.com/2.2/questions?order=desc&sort=activity&tagged='+tag+ '&site=stackoverflow&filter=!BHMIbze0EPheMk572h0ktETsgnphhV')
.then(function(links){
resolve(links);
})
.catch(reject);
});
}