Asking some API related questions and permission to use logos #1730
-
|
Hello, I'm yt-koike. I've been working on making Dify plugins and here's my repo. I made those nodes according to https://developer.civitai.com/docs/api/public-rest. Having told about my CivitAI plugin, I have three things to ask.
Any comments will help! Thank you :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
I reposted this from Disscussion because I thought Q&A could be better to ask. |
Beta Was this translation helpful? Give feedback.
-
|
Hi @yt-koike, thanks a lot for sharing your work on the CivitAI Dify plugin — that’s super useful for the community! Let me address your questions one by one: /creators endpoint Boolean query parameters (allowNoCredit, allowDerivatives, allowCommercialUse) ?allowCommercialUse=true not ?allowCommercialUse="true" If you’re building these parameters dynamically, make sure you don’t wrap the values in quotes. Maintaining / publishing the plugin That said, we’d love to see the community adopt and improve what you’ve started. Sharing docs, examples, and testing feedback will already be a huge help for others who want to use it. Thanks again for contributing this — you’re helping make the ecosystem stronger! |
Beta Was this translation helpful? Give feedback.
Hi @yt-koike, thanks a lot for sharing your work on the CivitAI Dify plugin — that’s super useful for the community! Let me address your questions one by one:
/creators endpoint
At the moment, the GET /v1/creators endpoint isn’t returning data because it hasn’t been fully implemented on the public API side yet. That’s why you’re not seeing responses — it’s not an issue with your code. You can keep an eye on the API docs
for updates when this gets rolled out.
Boolean query parameters (allowNoCredit, allowDerivatives, allowCommercialUse)
The API expects actual booleans, not strings. For example:
?allowCommercialUse=true
not
?allowCommercialUse="true"
If you’re building these parameters dyna…