我收到了以下文档(https://autovit.zendesk.com/hc/ro/articles/214077685-Obtinere-token-acces),我想调用此api来获取后续请求的访问令牌。
我不明白你怎么能有多个参数
-u 79: 70f8c636a503d50ac6c411597b4cc402
我给出的帖子请求是: 我们能帮你什么吗?经销商合作伙伴API Autovit
POST https://ssl.autovit.ro/api/open/oauth/token/
-X POST
-H "Accept: application / json"
-u 79: 70f8c636a503d50ac6c411597b4cc402 [client_id and client_secret]
-d "username = test24 @ test. pl " [username dealer Autovit]
-d" password = 123456789 " [Autovit user password]
-d" grant_type = password "
[]中的代码是提供者的评论
我将使用请求npm模块并知道我必须执行以下代码,但我不确定如何传递client_id(在本例中为79)和client_secret ,任何帮助我将不胜感激。
request({
url: 'https://ssl.autovit.ro/api/open/oauth/token/',
method: 'POST',
auth: {
user: 'test24 @ test. pl',
pass: '123456789'
},
form: {
'grant_type': 'password'
}
}, function(err, res) {
var json = JSON.parse(res.body);
console.log("Access Token:", json.access_token);
});
关注文档link我可以看到客户端ID和密码是参数。所以也许我可以使用如下的json field1参数??? :
//Load the request module
var request = require('request');
//Lets configure and request
request({
url: 'https://modulus.io/contact/demo', //URL to hit
qs: {from: 'blog example', time: +new Date()}, //Query string data
method: 'POST',
//Lets post the following key/values as form
json: {
field1: 'data',
field2: 'data'
}
}, function(error, response, body){
if(error) {
console.log(error);
} else {
console.log(response.statusCode, body);
}
});
答案 0 :(得分:1)
-u选项用于基本身份验证。您可以将其包含在网址或授权标题中,作为"基本{auth_hash}"。
本文在示例中显示了每个示例 - https://www.haykranen.nl/2011/06/21/basic-http-authentication-in-node-js-using-the-request-module/