HTTP 请求随机 JSON 放置

发布于 2025-01-13 13:06:14 字数 1088 浏览 2 评论 0 原文

我在 PowerApps Web API 链接。我理解这里的参数,直到底部的JSON。 JSON属于哪个HTTP请求参数?

POST[OrganizationURI]/api/data/v9.0/accounts$select=name&$expand=primarycontactid($select=fullname),Account_Tasks($select=subject) HTTP/1.1
Content-Type: application/json; charset=utf-8
OData-MaxVersion: 4.0
OData-Version: 4.0
Accept: application/json
Prefer: return=representation

{
    "name": "Sample Account",
    "[email protected]": "/contacts(00000000-0000-0000-0000-000000000001)",
    "[email protected]": [
        "/tasks(00000000-0000-0000-0000-000000000002)",
        "/tasks(00000000-0000-0000-0000-000000000003)"
    ]
}

I came across HTTP requests on PowerApps Web API link. I understand the parameters here until the JSON at the bottom. To which HTTP request parameter does the JSON belong to?

POST[OrganizationURI]/api/data/v9.0/accounts$select=name&$expand=primarycontactid($select=fullname),Account_Tasks($select=subject) HTTP/1.1
Content-Type: application/json; charset=utf-8
OData-MaxVersion: 4.0
OData-Version: 4.0
Accept: application/json
Prefer: return=representation

{
    "name": "Sample Account",
    "[email protected]": "/contacts(00000000-0000-0000-0000-000000000001)",
    "[email protected]": [
        "/tasks(00000000-0000-0000-0000-000000000002)",
        "/tasks(00000000-0000-0000-0000-000000000003)"
    ]
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贱贱哒 2025-01-20 13:06:14

发现这只是HTTP请求的主体。例如,如果使用 Postman,请将 JSON 放入“正文”选项卡并将其设置为原始文本。

输入图片此处描述

Found out that is just the body of the HTTP request. For example, if using Postman, put the JSON into the Body tab and set it as raw text.

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文