redditorMinimal Reddit API Wrapper
redditor 是一个最小的 Reddit API 包装器,它管理会话令牌、速率限制和 JSON 解析,除此之外,它会直接传递来自 Reddit 的原始响应。 通过 npm install redditor
安装。用法:它支持匿名请求和授权请求。
var reddit = require('redditor');
reddit.get('/r/funny.json', function (err, response) {
if (err) throw err;
console.log(response); // response 是一个 JavaScript 对象
});
使用用户名和密码登录:
reddit({
username: 'test_username',
password: 'test_password'
}, function (err, response) {
if (err) throw err;
console.log(response); // 返回登录后的响应
});
下载地址
用户评论