我需要帮助通过搜索获取有关使用angularJS的Twitter用户的信息 https://dev.twitter.com/rest/reference/get/users/search
我有authintication params
访问令牌someToken
访问令牌秘密someTokenSecret
访问级别读写
所有者:我
所有者ID:一些ID
我不知道我应该把authintication params放在哪里
如何通过一些ajax请求来做到这一点?像这样:
$http({
method: "GET",
dataType: 'json',
url: "https://api.twitter.com/1.1/search/tweets.json?q=%23freebandnames&since_id=24012619984051000&max_id=250126199840518145&result_type=mixed&count=4"
}).then(function mySuccess(response) {
$scope.myWelcome = response.data;
console.log(myWelcome);
}, function myError(response) {
$scope.myWelcome = response.statusText;
});
});
我喜欢一些例子或解释,因为我迷失了这个......