415不支持的媒体类型错误 - Domo Connector

时间:2016-07-14 21:40:04

标签: javascript oauth oauth-2.0 httprequest domo

所以我正在使用Domo开发人员工具构建一个连接器(他们喜欢称之为IDE),而我似乎无法使用他们的库来验证身份。

Domo使用httprequest库进行基本和oauth类型的身份验证。

我无法通过Domo获取令牌,但我可以通过curl或使用Postman api工具轻松完成。

以下是以下代码:

var client_id = '4969e1ea-71b9-3267-ae7d-4ce0ac6bfa28';
var client_secret = '*****************************';
var user = '*********';
var pass = '*********';

var postData =
{
  data: {
    'grant_type': 'password',
    'username': user,
    'password': pass,
     'client_id': client_id,
    'client_secret': client_secret,
    'scope': 'internal'
  }
};

var res = httprequest.post('https://rest.synthesio.com/security/v1/oauth/token', postData);

DOMO.log('res: ' + res);

如果你有不同的接近方式,请告诉我。我尝试在postData对象本身中添加标头,并删除data变量,同时保留属性。

1 个答案:

答案 0 :(得分:1)

当你将postData作为这样的对象过去时,DOMO将通过JSON.stringify运行它并将结果发送到请求体中。

您可以手动编码请求正文或使用其httprequest.addParameter函数添加它们。尝试这样的事情:

var client_id = '4969e1ea-71b9-3267-ae7d-4ce0ac6bfa28';
var client_secret = '*****************************';
var user = '*********';
var pass = '*********';

httprequest.addParameter('grant_type', 'password');
httprequest.addParameter('username', user);
httprequest.addParameter('password', pass);
httprequest.addParameter('client_id', client_id);
httprequest.addParameter('client_secret', client_secret);
httprequest.addParameter('scope', 'internal');

var res = httprequest.post('https://rest.synthesio.com/security/v1/oauth/token');

DOMO.log('res: ' + res);