对Graph API的POST请求因错误的请求而失败 [英] POST request to Graph API fails with Bad Request

查看:43
本文介绍了对Graph API的POST请求因错误的请求而失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发一个脚本来访问Graph API,以读取我们广告中的所有用户.我正在通过以下方式向AXIOS执行请求:

I am developing a script to access the Graph API to read all users in our AD. I am performing a request with AXIOS via:

    let response;
    try {
        response = await axios.post(`https://login.microsoftonline.com/${config.get('azure.tenant')}/oauth2/v2.0/token`, {
            client_id: config.get('azure.appId'),
            scope: config.get('azure.scope'),
            client_secret: config.get('azure.secret'),
            grant_type: config.get('azure.grantType')
        });
    } catch (e) {
        res.send(e);
    }

这失败了,但是:

{
"message": "Request failed with status code 400",
"name": "Error",
"stack": "Error: Request failed with status code 400\n    at createError (C:\\_Apps\\repos\\timesAPI\\node_modules\\axios\\lib\\core\\createError.js:16:15)\n    at settle (C:\\_Apps\\repos\\timesAPI\\node_modules\\axios\\lib\\core\\settle.js:17:12)\n    at IncomingMessage.handleStreamEnd (C:\\_Apps\\repos\\timesAPI\\node_modules\\axios\\lib\\adapters\\http.js:237:11)\n    at IncomingMessage.emit (events.js:194:15)\n    at endReadableNT (_stream_readable.js:1103:12)\n    at process._tickCallback (internal/process/next_tick.js:63:19)",
"config": {
"url": "https://login.microsoftonline.com/86xxxxxxxxx8df7b/oauth2/v2.0/token",
"method": "post",
"data": "{\"client_id\":\"18xxxxxxxxf5x\",\"scope\":\"https://graph.microsoft.com/.default\",\"client_secret\":\"/xxxxxxxS:6xxxxxsxxQ\",\"grant_type\":\"client_credentials\"}",
"headers": {
"Accept": "application/json, text/plain, */*",
"Content-Type": "application/json;charset=utf-8",
"User-Agent": "axios/0.19.0",
"Content-Length": 184
},
"transformRequest": [
null
],
"transformResponse": [
null
],
"timeout": 0,
"xsrfCookieName": "XSRF-TOKEN",
"xsrfHeaderName": "X-XSRF-TOKEN",
"m

axContentLength": -1
}
}

为此,我正在遵循以下教程: https://docs.microsoft.com/en-us/graph/auth-v2-service ,表示通过以下方式访问api:

To do this, I am following the following tutorial: https://docs.microsoft.com/en-us/graph/auth-v2-service, which says, to access the api via:

//换行符仅供阅读.

// Line breaks are for legibility only.

POST https://login.microsoftonline.com/ {tenant}/oauth2/v2.0/令牌HTTP/1.1主机:login.microsoftonline.com内容类型:application/x-www-form-urlencoded

POST https://login.microsoftonline.com/{tenant}/oauth2/v2.0/token HTTP/1.1 Host: login.microsoftonline.com Content-Type: application/x-www-form-urlencoded

client_id = 535fb089-9ff3-47b6-9bfb-4f1264799865& scope = https%3A%2F%2Fgraph.microsoft.com%2F.default& client_secret = qWgdYAmab0YSkuL1qKv5bPX& grant_type = client_credentials

client_id=535fb089-9ff3-47b6-9bfb-4f1264799865 &scope=https%3A%2F%2Fgraph.microsoft.com%2F.default &client_secret=qWgdYAmab0YSkuL1qKv5bPX &grant_type=client_credentials

我只是将标题发送错了吗?

Am I just sending the headers wrong?

推荐答案

已解决.我使用字符串作为第二个参数发送了凭据: client_id = $ {config.get('azure.appId')}& scope = $ {config.get('azure.scope')}& client_secret= $ {config.get('azure.secret')}& grant_type = $ {config.get('azure.grantType')}

Solved it. I sent the credentials using a string as the second argument: client_id=${config.get('azure.appId')}&scope=${config.get('azure.scope')}&client_secret=${config.get('azure.secret')}&grant_type=${config.get('azure.grantType')}

这篇关于对Graph API的POST请求因错误的请求而失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆