mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 01:35:24 -04:00
f5e745a1a1
Changed the struct tag from `json:` to `form:` for PluginUniqueIdentifier field in DecodePluginFromIdentifier handler. This allows the parameter to be bound from query string instead of JSON body. This is consistent with similar GET endpoints (FetchPluginManifest, FetchPluginFromIdentifier) which already use `form:` tags. The change is needed because: - GET requests with body are rejected by some HTTP intermediaries (e.g., Cloud Run) - HTTP standards state that GET request body has no defined semantics - Query parameters are the appropriate way to pass data in GET requests 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>