Skip to content

mqtt.MqttClient is not a constructor #524

Open
@byoung96

Description

@byoung96

Describe the bug

I am trying to setup a connection to AWS IoT from a web application using Mqtt5 and custom auth. Whenever I call client.start() I receive the error mqtt.MqttClient is not a constructor.

Expected Behavior

I would expect that if I had the custom auth configured correctly it would successfully make the connection to mqtt when I call the method client.start().

Current Behavior

image
I get the following error.

Reproduction Steps

This was mainly happening in a React app that is built using Vite. I thought it might be a configuration issue so I cloned this repo and tried the pub_sub_mqtt5 browser sample. Since I don't use the Cognito I switched the config setup to be the custom auth. Below what the createClient was changed to:

function createClient(): mqtt5.Mqtt5Client {
  let wsConfig: iot.MqttConnectCustomAuthConfig = {
    username: "",
    password: Buffer.from("", "base64"),
    tokenKeyName: "",
    tokenValue: "",
    tokenSignature:"",
    authorizerName: "",
  };

  let builder: iot.AwsIotMqtt5ClientConfigBuilder =
    iot.AwsIotMqtt5ClientConfigBuilder.newWebsocketMqttBuilderWithCustomAuth(
      "hostname",
      wsConfig,
    );

  let client: mqtt5.Mqtt5Client = new mqtt5.Mqtt5Client(builder.build());

  client.on("error", (error) => {
    log("Error event: " + error.toString());
  });

  client.on(
    "messageReceived",
    (eventData: mqtt5.MessageReceivedEvent): void => {
      log("Message Received event: " + JSON.stringify(eventData.message));
      if (eventData.message.payload) {
        log("  with payload: " + toUtf8(eventData.message.payload as Buffer));
      }
    },
  );

  client.on("attemptingConnect", (eventData: mqtt5.AttemptingConnectEvent) => {
    log("Attempting Connect event");
  });

  client.on("connectionSuccess", (eventData: mqtt5.ConnectionSuccessEvent) => {
    log("Connection Success event");
    log("Connack: " + JSON.stringify(eventData.connack));
    log("Settings: " + JSON.stringify(eventData.settings));
  });

  client.on("connectionFailure", (eventData: mqtt5.ConnectionFailureEvent) => {
    log("Connection failure event: " + eventData.error.toString());
  });

  client.on("disconnection", (eventData: mqtt5.DisconnectionEvent) => {
    log("Disconnection event: " + eventData.error.toString());
    if (eventData.disconnect !== undefined) {
      log("Disconnect packet: " + JSON.stringify(eventData.disconnect));
    }
  });

  client.on("stopped", (eventData: mqtt5.StoppedEvent) => {
    log("Stopped event");
  });

  return client;
}

I'd also added that in my vite project I tried the proposed solution in issue #474 but that also hasn't worked.

Possible Solution

My best guess as for a solution would be a configuration that needs to be changed. Im sort of at a loss here.

Additional Information/Context

No response

SDK version used

1.21.0

Environment details (OS name and version, etc.)

Sonoma 14.1 on m3 pro

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugThis issue is a bug.p2This is a standard priority issue

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions