如何使用request
npm模块执行以下操作?
curl https://todoist.com/oauth/access_token \
-d client_id=0123456789abcdef \
-d client_secret=secret \
-d code=abcdef \
-d redirect_uri=https://example.com
我试过这样做:
var body = JSON.stringify({
client_id: '0123456789abcdef',
client_secret: 'secret',
code: 'abcdef'
});
var postBody = {
url: 'https://todoist.com/oauth/access_token',
body: body,
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
}
};
request.post(postBody, function(error, response, body) {
...
});
答案 0 :(得分:22)
const formData = {
client_id: '0123456789abcdef',
client_secret: 'secret',
code: 'abcdef'
};
request.post(
{
url: 'https://todoist.com/oauth/access_token',
form: formData
},
function (err, httpResponse, body) {
console.log(err, body);
}
);
请尝试此代码。
答案 1 :(得分:0)
漂亮确保该演示相当于:
https://todoist.com/oauth/access_token?client_id=0123456789abcdef&client_secret=secret&code=abcdef&redirect_uri=...
?
启动参数的位置,&
将它们分开。
答案 2 :(得分:0)
var url = 'http://xxxxx'
request({
url : url,
method :"POST",
headers : {
"content-type": "application/json",
},
body: {
'id':1,
'name':'xxxx'
},
json: true
},
正在工作