An error occurred in the plugin, please contact the author of langgenius/dify_extractor/dify_extractor for help, error type: ConnectError, error details: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1000) #709

Closed
opened 2026-02-16 10:20:15 -05:00 by yindo · 2 comments
Owner

Originally created by @dtMndas on GitHub (Oct 13, 2025).

Self Checks

  • This is only for bug report, if you would like to ask a question, please head to Discussions.
  • I have searched for existing issues Dify issues & Dify Official Plugins, including closed ones.
  • I confirm that I am using English to submit this report (我已阅读并同意 Language Policy).
  • [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)
  • Please do not modify this template :) and fill in all the required fields.

Dify version

1.9.1

Plugin version

0.05

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

Traceback (most recent call last):
File "/app/api/core/workflow/workflow_entry.py", line 106, in run
yield from generator
File "/app/api/core/workflow/graph_engine/graph_engine.py", line 262, in run
raise self._graph_execution.error
RuntimeError: An error occurred in the plugin, please contact the author of langgenius/dify_extractor/dify_extractor for help, error type: ConnectError, error details: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1000)

✔️ Error log

No response

Originally created by @dtMndas on GitHub (Oct 13, 2025). ### Self Checks - [x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general). - [x] I have searched for existing issues [Dify issues](https://github.com/langgenius/dify/issues) & [Dify Official Plugins](https://github.com/langgenius/dify-official-plugins/issues), including closed ones. - [x] I confirm that I am using English to submit this report (我已阅读并同意 [Language Policy](https://github.com/langgenius/dify/issues/1542)). - [x] [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:) - [x] Please do not modify this template :) and fill in all the required fields. ### Dify version 1.9.1 ### Plugin version 0.05 ### Cloud or Self Hosted Self Hosted (Docker) ### Steps to reproduce Traceback (most recent call last): File "/app/api/core/workflow/workflow_entry.py", line 106, in run yield from generator File "/app/api/core/workflow/graph_engine/graph_engine.py", line 262, in run raise self._graph_execution.error RuntimeError: An error occurred in the plugin, please contact the author of langgenius/dify_extractor/dify_extractor for help, error type: ConnectError, error details: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self-signed certificate (_ssl.c:1000) ### ✔️ Error log _No response_
yindo added the bug label 2026-02-16 10:20:15 -05:00
yindo closed this issue 2026-02-16 10:20:15 -05:00
Author
Owner

@dosubot[bot] commented on GitHub (Oct 30, 2025):

Hi, @dtMndas. I'm Dosu, and I'm helping the dify-official-plugins team manage their backlog and am marking this issue as stale.

Issue Summary:

  • You reported a ConnectError in the langgenius/dify_extractor plugin due to SSL certificate verification failure with a self-signed certificate.
  • The issue occurs during workflow execution on Dify 1.9.1 and plugin version 0.05 in a self-hosted Docker environment.
  • The error message suggests contacting the plugin author for assistance.
  • No further updates or comments have been provided since the initial report.

Next Steps:

  • Please let me know if this issue is still relevant with the latest version of the dify-official-plugins repository by commenting here.
  • If I do not hear back within 5 days, I will automatically close this issue.

Thank you for your understanding and contribution!

@dosubot[bot] commented on GitHub (Oct 30, 2025): Hi, @dtMndas. I'm [Dosu](https://dosu.dev), and I'm helping the dify-official-plugins team manage their backlog and am marking this issue as stale. Issue Summary: - You reported a ConnectError in the langgenius/dify_extractor plugin due to SSL certificate verification failure with a self-signed certificate. - The issue occurs during workflow execution on Dify 1.9.1 and plugin version 0.05 in a self-hosted Docker environment. - The error message suggests contacting the plugin author for assistance. - No further updates or comments have been provided since the initial report. Next Steps: - Please let me know if this issue is still relevant with the latest version of the dify-official-plugins repository by commenting here. - If I do not hear back within 5 days, I will automatically close this issue. Thank you for your understanding and contribution!
Author
Owner

@xjw00654 commented on GitHub (Dec 18, 2025):

If you are having this issue, the problem happends due to the dify_plugin lib:

    @property
    def blob(self) -> bytes:
        """
        Get the file content as a bytes object.

        If the file content is not loaded yet, it will be loaded from the URL and stored in the `_blob` attribute.

        Raises:
            ValueError: If the URL uses an unsupported protocol (e.g., missing 'http://' or 'https://'),
                        suggesting configuration of the FILES_URL environment variable.
            httpx.HTTPStatusError: If the request to fetch the file fails.
        """
        if self._blob is None:
            try:
                response = httpx.get(self.url, verify=False)  # <<<<<< HERE set verify = False to avoid ssl verification, or add cert file
                response.raise_for_status()
                self._blob = response.content
            except httpx.UnsupportedProtocol as e:
                raise ValueError(
                    f"Invalid file URL '{self.url}': {e}. "
                    "Ensure the `FILES_URL` environment variable is set in your .env file"
                ) from e

        assert self._blob is not None
        return self._blob
@xjw00654 commented on GitHub (Dec 18, 2025): If you are having this issue, the problem happends due to the [dify_plugin lib](https://github.com/hjlarry/dify-plugin-sdks/blob/491a855cd77e14d524202525cbabbbe7358caeab/python/dify_plugin/file/file.py#L5): ```python @property def blob(self) -> bytes: """ Get the file content as a bytes object. If the file content is not loaded yet, it will be loaded from the URL and stored in the `_blob` attribute. Raises: ValueError: If the URL uses an unsupported protocol (e.g., missing 'http://' or 'https://'), suggesting configuration of the FILES_URL environment variable. httpx.HTTPStatusError: If the request to fetch the file fails. """ if self._blob is None: try: response = httpx.get(self.url, verify=False) # <<<<<< HERE set verify = False to avoid ssl verification, or add cert file response.raise_for_status() self._blob = response.content except httpx.UnsupportedProtocol as e: raise ValueError( f"Invalid file URL '{self.url}': {e}. " "Ensure the `FILES_URL` environment variable is set in your .env file" ) from e assert self._blob is not None return self._blob ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify-official-plugins#709