mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-21 17:45:23 -04:00
dify_extractor plugin can not extract any content, but it run success #714
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @dtMndas on GitHub (Oct 14, 2025).
Self Checks
Dify version
1.9.1
Plugin version
0.0.5
Cloud or Self Hosted
Self Hosted (Docker)
Steps to reproduce
upload the file from local, then test run the tool node for dify_extractor
✔️ Error log
plugin input :
{
"file": {
"dify_model_identity": "dify__file",
"extension": ".txt",
"filename": "product.txt",
"id": "f255b30f-b8d6-4f3f-b813-c010de9c6eee",
"mime_type": "text/plain",
"related_id": "f255b30f-b8d6-4f3f-b813-c010de9c6eee",
"remote_url": "https://xxx.com.cn/files/f255b30f-b8d6-4f3f-b813-c010de9c6eee/file-preview?timestamp=1760428420&nonce=536e96c5c02f4c3290ef6420023ad8dd&sign=BVO2K30ss0GJH9pD10P5z0WOba04-JM7BNieoIAQ2Vk%3D",
"size": 6368,
"tenant_id": "c54390c2-3b00-4f47-9523-6b5d5ac614ee",
"transfer_method": "local_file",
"type": "custom",
"url": "https://xxx.com.cn/files/f255b30f-b8d6-4f3f-b813-c010de9c6eee/file-preview?timestamp=1760428434&nonce=5f70533d96828cfb967c4396e3896108&sign=DX8eklbquczYZLJ8tldTt2kXNM2ddV1UWCI0aAeZE_M%3D"
}
}
and output always :
{
"files": [],
"json": [
{
"data": []
}
],
"text": ""
}
@dosubot[bot] commented on GitHub (Oct 14, 2025):
The dify_extractor plugin expects the actual file content to be provided in the
blobattribute of the file input—not just metadata or a remote URL. If theblobis missing or empty, the plugin will run without error but always return empty output fields (source).To resolve this, check that your workflow passes the file bytes in the
blobfield when invoking the plugin. The plugin does not fetch or download the file fromremote_urlitself. If you’re using a custom integration or workflow, make sure the file content is loaded and included in the plugin input. If the file is only referenced by URL, extraction will silently fail and return empty results.To reply, just mention @dosu.
How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other
