【发布时间】:2014-06-13 19:37:09
【问题描述】:
在我当前的应用程序中,我正在使用这些参数(twit Node.Js 模块)查询 Twitter API:
var T = new Twit({
consumer_key: 'xxx'
, consumer_secret: 'xxx'
, access_token: 'xxxx'
, access_token_secret: 'xxx'
});
这允许我仅获取上述设置的用户的数据,但是,我如何授权 Twitter 中的其他用户并使用他们的访问令牌和密码?
谢谢!
【问题讨论】: