Class SetCredentialsResponse

SetCredentialsResponse

建構工具,用來為指令碼專案建立 setCredentials() 回應。

function setCredentials(request) {
  var isValid = checkForValidCreds(request);

  if (isValid) {
    // store the creds somewhere.
  }

  return cc.newSetCredentialsResponse()
    .setIsValid(isValid)
    .build();
}

方法

方法傳回類型簡短說明
build()Object驗證這個物件,並以數據分析所需的格式傳回。
printJson()String列印這個物件的 JSON 表示法。
setIsValid(isValid)SetCredentialsResponse設定這個 SetCredentialsResponse 的有效狀態。

內容詳盡的說明文件

build()

驗證這個物件,並以數據分析所需的格式傳回。

回攻員

Object — 驗證的 SetCredentialsResponse 物件。


printJson()

列印這個物件的 JSON 表示法。此功能僅適用於偵錯。

回攻員

String


setIsValid(isValid)

設定這個 SetCredentialsResponse 的有效狀態。如果true 要求中提供的憑證有效,否則為 false

參數

名稱類型說明
isValidBoolean要設定的有效狀態。

回攻員

SetCredentialsResponse:這個建構工具用於鏈結。