shamblett / mqtt_client

A server and browser based MQTT client for dart
Other
548 stars 176 forks source link

mqtt_client dont work in flutter web #297

Closed sina8013 closed 3 years ago

sina8013 commented 3 years ago

hello i want too use mqtt in my flutter web project but web i click on "Connect" button i received this error:

════════ Exception caught by gesture ═══════════════════════════════════════════ Unsupported operation: default SecurityContext getter ══════════════════════════════════════════════════════════════════════

why???

shamblett commented 3 years ago

Looks as though you are using MqttServerClient, for web/browser applications you should be using MqttBrowserClient.

sina8013 commented 3 years ago

Looks as though you are using MqttServerClient, for web/browser applications you should be using MqttBrowserClient.

Ooo,thanks it works.🌹

rpungin commented 1 week ago

You need to use MqttBrowserClient on the web and MqttServerClient on mobile. I did it like this.