Actions61
- 电子表格 Actions
- 云空间 Actions
- 消息 Actions
- 云文档 Actions
- 日历 Actions
- 多维表格 Actions
Overview
This node retrieves the plain text content of a document from the Feishu (Lark) cloud document service. It is useful in scenarios where you need to extract and process the raw textual data from a Feishu document, such as for further analysis, archiving, or integration with other systems. For example, you might use this node to fetch meeting notes stored in Feishu and then analyze them using NLP tools, or to synchronize documentation between Feishu and another platform.
Properties
| Name | Type | Meaning |
|---|---|---|
| 文档 ID | String | The unique identifier of the document whose plain text content you want to retrieve. This is required. |
Output
The node outputs a JSON object containing the plain text content of the specified Feishu document. The exact structure of the output depends on the Feishu API response, but typically includes at least a field with the document's raw text. If an error occurs and "Continue On Fail" is enabled, the output will contain an error message instead.
Example output:
{
"content": "This is the plain text content of the document."
}
Or, in case of error:
{
"error": "Document not found"
}
Dependencies
- Feishu API: Requires access to the Feishu (Lark) API.
- Credentials: You must configure
feishuCredentialsApiin n8n with valid Feishu API credentials.
Troubleshooting
- Missing or Invalid Document ID: If the provided 文档 ID is incorrect or does not exist, the node will return an error message such as "Document not found".
- Authentication Errors: If the Feishu credentials are missing or invalid, the node will fail with an authentication error.
- Unimplemented Method Error: If the resource or operation is not implemented, you may see an error like "未实现方法: doc.doc:getRawContent".
- API Limitations: Hitting Feishu API rate limits or permission issues can also cause errors; ensure your credentials have sufficient permissions.