gpt4 book ai didi

node.js - 使用 NodeJs Request 模块向 Reddit API 发表评论

转载 作者:搜寻专家 更新时间:2023-10-31 22:45:56 26 4
gpt4 key购买 nike

所以我正在为一个 Redditor 同事构建一个非常愚蠢的机器人。它需要登录,然后发表评论。恕我直言,Reddit 文档相当稀少,所以我希望有人能告诉我哪里出错了。

据我了解,我需要发帖到https://ssl.reddit.com/api/login ,检索一个 cookie,然后将该 cookie 与提供的 modhash 一起发送到 https://api.reddit.com/api/comment .但是当我按照这些步骤操作时,我不断收到 403 statusCode。我确定我遗漏了一些愚蠢的东西,但我似乎无法说出它是什么。

相关代码:

var request = require('request')
, modhash;

request.defaults({jar:true});

function login () {
var options = {
url : 'https://ssl.reddit.com/api/login?api_type=json&user=USERNAME&passwd=PASSWORD&rem=true',
headers : {
'User-Agent' : 'fooBot/0.1 by USERNAME'
},
method : 'POST'
};

request(options, function (err, res, body) {
if (err) {
console.log(err.json.errors);
return;
} else {
var parsedBody = JSON.parse(body);
modhash = body.json.data.modhash;
}
});
}

function postComment () {
var parentId = 't1_cf9k3wa'
, options = {
url : 'https://api.reddit.com/api/comment?api_type=json&text=foobar&thing_id=' + parentId,
headers : {
'User-Agent' : 'fooBot/0.1 by USERNAME',
'X-Modhash' : modhash
},
methods : 'POST'
};
request(options, function (err, res, body) {
if (err) {
console.log(err);
return;
} else {
// this blows up
}
});
}

最佳答案

所以我已经解决了这个问题,虽然不是很满意。下面是我本周末发布的工作版本。我做错了很多事情。

  • 正如上面 gotnull 所指出的,我将 method 作为 methods 来指指点点。
  • 无论出于何种原因,request 的 cookie jar 都不适合我。我必须按照代码所示手动处理 cookie。
  • api.reddit.com 不处理 https 所以我不得不发送请求以发表评论到 https://en.reddit。 com/

我仍然对它的工作方式不满意,因为它通过将它放在 URI 中来限制我的消息的长度。据我了解,我需要在 POSTDATA 中包含消息,但我无法哄骗请求为我做这件事。

我最初的问题已经解决,但当我重新访问机器人时,我需要为此打开第二个问题。

var request  = require('request')
, argv = require('yargs').argv
, modhash
, cookie;

function login () {
var options = {
url : 'https://ssl.reddit.com/api/login?api_type=json&user=' + argv.user + '&passwd=' + argv.pass + '&rem=True',
headers : {
'User-Agent' : 'fooBot/0.1 by USERNAME',
},
method : 'POST'
};

request(options, function (err, res, body) {
if (err) {
console.log('LOGIN ERROR:');
console.log(err.json.errors);
return;
} else {
var parsedBody = JSON.parse(body);
modhash = parsedBody.json.data.modhash;
cookie = parsedBody.json.data.cookie;
}
});
}

function postComment (parentId) {
var text = 'message message message.'
, options = {
url : 'https://en.reddit.com/api/comment?api_type=json&text=' + encodeURIComponent(text) + '&thing_id=' + parentId,
headers : {
'User-Agent' : 'fooBot/0.1 by USERNAME',
'X-Modhash' : modhash,
'Cookie' : 'reddit_session=' + encodeURIComponent(cookie)
},
method : 'POST' };

request(options, function (err, res, body) {
if (err) {
console.log('COMMENT POST ERROR:');
console.log(err.stack);
return;
} else {
console.log('// ------ //');
console.log(body);
console.log('// ------ //');
}
});
}

关于node.js - 使用 NodeJs Request 模块向 Reddit API 发表评论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21652481/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com