移动设备:缺少操作

Mobiledevices: action missing

我正在尝试执行 POST 操作,但是,当我发出请求时,我收到代码 400,表明缺少操作值。

我的代码:

function mobileAPIPOST() {

  var response = UrlFetchApp.fetch(
    "https://www.googleapis.com/admin/directory/v1/customer/my_customer/devices/mobile/fakexQ_fake0Z0dKFdSblfakeTnnfakel7IYwixfake4ddZfakeAIvnmu/action", {
      method: "POST",
      headers: {
        "Authorization": "Bearer " + ScriptApp.getOAuthToken(),
        "Content-Type": "application/json",
      },
      data: {
        "action": "block"
      },
      muteHttpExceptions: true
    });

}

我根据@TheMaster 的回复更新了代码。

我更新的代码:

function mobileAPIPOST() {

  var response = UrlFetchApp.fetch(
    "https://www.googleapis.com/admin/directory/v1/customer/my_customer/devices/mobile/fakexQ_fake0Z0dKFdSblfakeTnnfakel7IYwixfake4ddZfakeAIvnmu/action", {
      method: "POST",
      headers: {
        "Authorization": "Bearer " + ScriptApp.getOAuthToken(),
        "Content-Type": "application/json",
      },
      payload: {
        "action": "block"
      },
      muteHttpExceptions: true
    });

}

指出错误:

{
  "error": {
      "errors": [
       {
        "domain": "global",
        "reason": "parseError",
        "message": "Parse Error"
       }
      ],
      "code": 400,
      "message": "Parse Error"
     }
    }

UrlFetchApp 没有 data 关键参数。请改用 payload

参考:

UrlFetchApp

代码片段:

UrlFetchApp.fetch(url,
    {
      method: "POST",
      headers: {
        "Authorization": "Bearer " + ScriptApp.getOAuthToken(),
      },
      contentType:  'application/json',
      payload: JSON.stringify({
        "action": "block"
      }),
      muteHttpExceptions: true
    });