用于为脚本项目创建 get
响应的构建器。
function getAuthType() { const cc = DataStudioApp.createCommunityConnector(); return cc.newAuthTypeResponse() .setAuthType(cc.AuthType.USER_PASS) .setHelpUrl('https://www.example.org/connector-auth-help') .build(); }
方法
方法 | 返回类型 | 简介 |
---|---|---|
build() | Object | 验证此对象,并以数据分析所需的格式返回该对象。 |
print | String | 输出此对象的 JSON 表示法。 |
set | Get | 设置构建器的 Auth 。 |
set | Get | 设置构建工具的帮助网址。 |
详细文档
build()
print Json()
输出此对象的 JSON 表示法。这仅用于调试。
返回
String
set Auth Type(authType)
set Help Url(helpUrl)
设置构建工具的帮助网址。
帮助网址是一个可选网址,用户可以访问该网址,获取有关设置身份验证的帮助。只有 USER_PASS
、KEY
和 USER_TOKEN
authType 支持此属性。
参数
名称 | 类型 | 说明 |
---|---|---|
help | String | 要设置的帮助网址。 |
返回
Get
- 此构建器,用于链式调用。