Files
dify-docs/ja-jp/plugins/faq.mdx
2025-07-16 16:42:34 +08:00

61 lines
2.9 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: よくある質問
---
{/*
コントリビューター注:
----------------
これはレガシードキュメントであり、非推奨になります。
このバージョンに変更を加えないでください。
すべての更新は新しいバージョンに向けられるべきです:
/plugin-dev-ja/0331-faq
*/}
<Card title="このドキュメントはまもなく非推奨になります" icon="circle-exclamation" href="/plugin-dev-ja/0331-faq">
<p>ドキュメント再編の一環として、このページは段階的に廃止されます。</p>
<p><u><b>このカードをクリックして</b></u>、最新情報が含まれる更新版にリダイレクトしてください。</p>
<p>新しいドキュメントに不一致や改善が必要な箇所を見つけた場合は、ページ下部の「問題を報告」ボタンを使用してください。</p>
</Card>
## プラグインのインストール時にアップロードが失敗する場合の対処方法は?
**エラー詳細**`PluginDaemonBadRequestError: plugin_unique_identifier is not valid` というエラーメッセージが表示されます。
**解決方法**:プラグインプロジェクトの `manifest.yaml` ファイルと `/provider` パス配下の `.yaml` ファイルの `author` フィールドを GitHub ID に変更してください。
プラグインのパッケージングコマンドを再実行し、新しいプラグインパッケージをインストールしてください。
## プラグインインストール時のエラーの対処方法
**問題**: `plugin verification has been enabled, and the plugin you want to install has a bad signature` というエラーメッセージが表示された場合、どのように対処すればよいですか?
**解決方法**: `/docker/.env` 設定ファイルの末尾に以下の行を追加してください:
`FORCE_VERIFYING_SIGNATURE=false`.
Dify サービスを再起動するには、以下のコマンドを実行してください:
```bash
cd docker
docker compose down
docker compose up -d
```
このフィールドを追加すると、Dify プラットフォームは Dify Marketplace にリストされていない(つまり、未検証の)すべてのプラグインのインストールを許可します。
ただし、安全性を考慮して、未知のソースから提供されるプラグインは、テスト環境またはサンドボックス環境でまずインストールし、安全性を確認した後、本番環境にデプロイしてください。
{/*
Contributing Section
DO NOT edit this section!
It will be automatically generated by the script.
*/}
---
[このページを編集する](https://github.com/langgenius/dify-docs/edit/main/ja-jp/plugins/faq.mdx) | [問題を報告する](https://github.com/langgenius/dify-docs/issues/new?template=docs.yml)