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
Appreciate all the hard work ya'll have done to resurrect these things. Is there any documentation or guidance on working with the SSL certs for this API? I have another Pi running a python flask server and I'd like for that Pi to be able to hit the feeder service API but I'm having issues figuring out how to set up the SSL certs. When trying to talk to the feeder service API I get an error due to the self signed certificate:
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate
I'm not very familiar working with these SSL certs and Python is not the language I typically work in.
Thanks!
The text was updated successfully, but these errors were encountered:
Yah, unfortunately FastAPI only supports serving itself on a single port and the feeder only communicates when it can do a TLS handshake. The handshake doesn’t have to contain a trusted certificate… but some certificate does have to be there. For this reason we just default to generating a self-signed certificate.
You can configure your own certificates if you want and FeederNet will gladly use them. Otherwise, your only other options would be to grab your self-signed public key and explicitly trust it in your client or disable SSL validation in the client.
If you want to share more specifics about how your client wants to call our API, I can probably give you more practical advice.
Hi all,
Appreciate all the hard work ya'll have done to resurrect these things. Is there any documentation or guidance on working with the SSL certs for this API? I have another Pi running a python flask server and I'd like for that Pi to be able to hit the feeder service API but I'm having issues figuring out how to set up the SSL certs. When trying to talk to the feeder service API I get an error due to the self signed certificate:
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate
I'm not very familiar working with these SSL certs and Python is not the language I typically work in.
Thanks!
The text was updated successfully, but these errors were encountered: