Auth0 API请求

时间:2016-04-22 04:16:16

标签: angular auth0

我试图向我的auth0 API端点patch发出myaccount.auth0.com/api/v2/users/:id个请求。我已将标头设置为application/json,但我仍然收到以下错误:

_body: "{"statusCode":400,"error":"Bad Request","message":"Invalid request payload JSON format"}"

我提出的请求如下:

headers.append('Content-Type', 'application/json');
var data: any = {
    "app_metadata": {
        "ward": "99999"
    }
};

return this._http.patch('https://pjlamb12.auth0.com/api/v2/users/auth0|571844c894efdc0a5b6a4144', data, {headers: headers}).map(res => res.json());

我将发送到docs like it shows here的数据进行了匹配。

为什么在发布像docs show这样的JSON对象时会出现此错误?我能错过什么?

0 个答案:

没有答案