Actions106
- 日历 Actions
- 多维表格 Actions
- 知识库 Actions
- 通讯录 Actions
- 任务 Actions
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
Overview
This node, named "Feishu Node," interacts with the Feishu platform to perform various operations on different resources. Specifically, for the resource "电子表格" (Spreadsheet) and operation "获取工作表" (Get Sheets), it retrieves the list of sheets within a given spreadsheet identified by a token. This is useful when you want to dynamically access or manipulate data from specific sheets inside a spreadsheet in Feishu.
Practical examples include:
- Automating data extraction from multiple sheets within a spreadsheet.
- Integrating Feishu spreadsheets with other workflows by fetching sheet metadata.
- Preparing dynamic inputs for subsequent nodes based on available sheets.
Properties
| Name | Meaning |
|---|---|
| 电子表格 Token | The token identifying the spreadsheet to retrieve sheets from. |
Output
The output is an array of JSON objects representing the sheets retrieved from the specified spreadsheet. Each item corresponds to one sheet's metadata or content as returned by the Feishu API.
If any error occurs during the retrieval for an item, and if the node is configured to continue on failure, the output will include an object with an error field describing the issue.
No binary data output is indicated in the code.
Dependencies
- Requires an API key credential for authenticating with the Feishu platform.
- The node depends on internal helper functions and a resource-operation factory to resolve and execute the correct API call.
- Proper configuration of the Feishu API credentials in n8n is necessary.
Troubleshooting
Common issues:
- Invalid or expired spreadsheet token leading to authentication or authorization errors.
- Network connectivity problems causing request failures.
- Unsupported or unimplemented resource-operation combinations resulting in errors.
Error messages:
"未实现方法: 电子表格.获取工作表"("Unimplemented method: spreadsheet.getSheets") indicates that the requested operation is not supported or missing implementation.- API-related errors wrapped as
NodeApiErrormay provide details about failed requests; ensure the token and permissions are correct.
Resolutions:
- Verify the spreadsheet token is correct and has sufficient permissions.
- Check network connectivity and Feishu service status.
- Confirm that the node version supports the desired resource and operation.