在user_timeline上获取403禁止,但不在其他任何API上

使用API​​authentication

var oauth2 = new OAuth2('Consumer Key', 'Consumer Secret', 'https://api.twitter.com/', null, 'oauth2/token', null); oauth2.getOAuthAccessToken('', 'grant_type': 'client_credentials' }, function (e, access_token) { console.log(access_token); //string that we can use to authenticate request requestURL = { url: 'https://api.twitter.com/1.1/statuses/user_timeline?user_id=' + userid, headers: { Authorization: 'Bearer ' + access_token } }; request(URL, function(error, response, body){ console.log(request); console.log(body); } 

有了这个代码,我得到了403禁止,但在其他API相同的代码,例如search/鸣叫它工作正常。 我在这里错过了什么? 不,用户不是私人的。