我想向 twitter api 发出请求并获取当前登录的用户源。
我用“apigee”尝试了 twitter api,一切正常。即使将授权标头从“apigee”复制到“邮递员”中,我也会取回数据。
好吧,但是当我尝试在我的 angular-app 中发出 http-request 时,整个应用程序停止工作。在浏览器中只有输出“{{message}}”,控制台打印两条错误消息:
Uncaught SyntaxError: Unexpected identifier :3000/javascripts/app.js:211
Uncaught Error: No module: app angular.min.js:17
我的应用程序中的代码如下所示
app.controller('TwitterCtrl', function($scope, $http) {
var url = "https://api.twitter.com/1.1/statuses/home_timeline.json";
$http.get(url,
{headers: {
'Authorization':
Oauth oauth_consumer_key = "xxxx",
oauth_signature_method="HMAC-SHA1"
oauth_timestamp="1401883718",
oauth_nonce="840988792",
oauth_version="1.0",
oauth_token="xxxx",
oauth_signature="xxx"
}})
.then(function (data) {
$scope.data = data.data;
console.log(data);
});
谁能帮助我或告诉我我做错了什么。凯文