-
-
Notifications
You must be signed in to change notification settings - Fork 123
如何手动验证工作流
Jankin Wei edited this page May 31, 2022
·
1 revision
获取 access_token (参考来源)
修改 app_id 和 app_secret 填入自己的配置文件中的, 运行下面的命令:
curl -XPOST -H "Content-type: application/json" -d '{ "app_id": "<your app id>", "app_secret": "<your app secret>" }' 'https://open.feishu.cn/open-apis/auth/v3/app_access_token/internal'
样例输出:
{
"code": 0,
"msg": "success",
"app_access_token": "t-abcdefghijkl0123456789",
"tenant_access_token": "t-mnopqrstuvwxyz00000",
"expire": 7200
}
获取飞书文档内容 (参考来源)
修改 docToken 填入测试的飞书文档,和 bearer 填入上述返回内容中的 tenant_access_token, 运行下面的命令:
curl -XGET -H 'Authorization: Bearer <your tenant access token>' 'https://open.feishu.cn/open-apis/doc/v2/<your doc token>/content'
根据命令的输出可以大致判断问题在哪里。