如何获得特定内容类型的响应
How to get a specific content type response
似乎无论我在 google api 处扔什么,我总是会得到相同类型的内容(JSON 或 XML)。例如:
https://developers.google.com/admin-sdk/groups-settings/v1/reference/groups/get
我想获得关于组设置的 JSON 响应 (GET https://www.googleapis.com/groups/v1/groups/groupUniqueId) - 我将 headers 设置为接受 json
并且内容类型为 application/json
.我应该得到 JSON,但我仍然得到 XML。对于其他端点,我默认得到 JSON,但我无法得到 XML。
问题是 - 我应该怎么做才能得到我想要的东西(JSON 对 https://developers.google.com/admin-sdk/groups-settings/v1/reference/groups/get 的回应)
添加 ?alt=json
的查询参数以设置首选响应。
似乎无论我在 google api 处扔什么,我总是会得到相同类型的内容(JSON 或 XML)。例如:
https://developers.google.com/admin-sdk/groups-settings/v1/reference/groups/get
我想获得关于组设置的 JSON 响应 (GET https://www.googleapis.com/groups/v1/groups/groupUniqueId) - 我将 headers 设置为接受 json
并且内容类型为 application/json
.我应该得到 JSON,但我仍然得到 XML。对于其他端点,我默认得到 JSON,但我无法得到 XML。
问题是 - 我应该怎么做才能得到我想要的东西(JSON 对 https://developers.google.com/admin-sdk/groups-settings/v1/reference/groups/get 的回应)
添加 ?alt=json
的查询参数以设置首选响应。