You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am calling the API from my local computer and it obviously is not getting through the login window. How should one access the API outside of Swagger UI https://XXX.proxy.runpod.net/ai-dock/api/docs?
You'll need to pass header Authorization: Bearer $WEB_TOKEN.
Alternatively, and maybe preferably, create a SSH tunnel and forward port 18188 - All services are proxied, with the proxy handling Auth. The ComfyUI service is actually bound to localhost 10,000 ports higher than the exposed port without auth so it's very flexible
I am calling the API from my local computer and it obviously is not getting through the login window. How should one access the API outside of Swagger UI https://XXX.proxy.runpod.net/ai-dock/api/docs?
curl -X 'POST'
'https://XXX.proxy.runpod.net/ai-dock/api/payload'
-H 'accept: application/json'
-H 'Content-Type: application/json'
-d '{
"input": {
"handler": "RawWorkflow",
"s3": {
"access_key_id": "your-s3-access-key",
"secret_access_key": "your-s3-secret-access-key",
"endpoint_url": "https://my-endpoint.backblaze.com",
"bucket_name": "your-bucket"
},
"webhook": {
"webhook_url": "your-webhook-url",
"webhook_extra_params": {}
},
"modifiers": {},
"workflow_json": {
...
}
}'
The text was updated successfully, but these errors were encountered: