1

在我的用例中,我想在 Google Cloud Workflow 中创建一个步骤,我可以在其中传递我的用户名和密码,并在变量中返回生成的不记名令牌。想知道这样一个工作流程的 yaml 配置会是什么样子吗?

我的端点需要以下方式的请求:

POST 'https://cloud.business.io/v2/login'
--header 'Content-Type: application/x-www-form-urlencoded'
--data-urlencode 'username=business@xyz.io'
--数据 urlencode '密码 = APassword123'

4

1 回答 1

2

通过一些试验和错误找到它!

call: http.post
args:
    url: https://cloud.business.io/v2/login
    headers:
        'Content-Type': 'application/x-www-form-urlencoded'
    body :
        'username': 'business@xyz.io'
        'password': 'APassword123'
result: BearerToken
于 2021-05-06T22:52:19.370 回答