If it's, for now, specific to Home Assistant app, why not just use workarounds like https://community.home-assistant.io/t/home-assistant-in-docker-pass-usb-device-from-host/184674/2 or https://community.home-assistant.io/t/home-assistant-in-docker-pass-usb-device-from-host/184674/6 ?
rjousse18
Posts
-
external devices - zigbee -
external devices - zigbeeHow could it be implemented ? Via the app settings in cloudron with a section where we could choose what usb device(s) the app can access ?
-
Home Assistant is now availableIs it possible to access usb stick with this solution ? Like Zigbee USB stick
-
OpenId Connect on custom web appsIs planned to unlock the provide for front app ?
-
OpenId Connect on custom web appsHi all !
I have a problem with openid connect during the development of my web app.
I try to develop a React App and I want to connect it with cloudron openid connect.
I installed oidc-react, and I fill the information of the oidc cloudron like this :
const oidcConfig = { onSignIn: () => { console.log("Test") }, authority: 'https://my.nastream.fr', clientId: 'cid-ff7b5ddd41a5ef70056f017d19d8498f', clientSecret: "6efd5b4cf931434d0f4c020d080b6d31cf1b82820e8d7fe6bd76f8a32c9115eb", redirectUri: 'https://10.8.0.6:3000/', scope: "openid" };
The problem is that all the steps works except when I have to fetch the /token endpoint. I have a 400 error without any error response. oidc-react sent this informations :
And I have this error from react :
Any idea ? Maybe I have forget some parameters ?