我想查看另一个用户的时间轴,我想知道为什么user_timeline.json返回一个空数组?当我没有放置参数它工作正常时,它会显示经过身份验证的用户时间轴,但是当我将user_id作为参数时,我看不到其他用户的时间轴。为什么呢?
这是我的代码:
getUserTimeline: function(id_str) {
var endpoint_url = CONSTANTS.BASE_URL + 'statuses/user_timeline.json';
createTwitterSignatureParams('GET', endpoint_url, 'user_id', id_str);
return $resource(endpoint_url).get({'user_id': id_str}).$promise;
},
答案 0 :(得分:0)
问题解决了!
只需通过QUERY改变GET $ resource(endpoint_url).get(...)==> $资源(endpoint_url).query(...)