Class SetCredentialsResponse

設定憑證回應

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

const communityConnector = DataStudioApp.createCommunityConnector();

function setCredentials(request) {
  const isValid = validateCredentials(request);

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

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

function validateCredentials(request) {
  // ...
}

方法

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

內容詳盡的說明文件

build()

驗證這個物件,並以 Data Studio 所需的格式傳回。

回攻員

Object:已驗證的 SetCredentialsResponse 物件。


printJson()

列印此物件的 JSON 表示法。這項設定僅供偵錯。

回攻員

String


setIsValid(isValid)

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

參數

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

回攻員

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