GithubHelp home page GithubHelp logo

Comments (5)

antoniodipinto avatar antoniodipinto commented on August 11, 2024 2

Any websocket requires a GET route to initiate, that's why @struckchure is getting a 404.
And also there is no socketio.New established

func NewWebsocketModule(app *fiber.App, deploymentHandler handlers.DeploymentHandlerInterface) {
	wsGroup := app.Group("/socket.io/")

	wsGroup.Use(func(c *fiber.Ctx) error {
		// IsWebSocketUpgrade returns true if the client
		// requested upgrade to the WebSocket protocol.
		if websocket.IsWebSocketUpgrade(c) {
			c.Locals("allowed", true)
			return c.Next()
		}
		return fiber.ErrUpgradeRequired
	})

	socketio.On(socketio.EventConnect, func(ep *socketio.EventPayload) {
		fmt.Printf("Connection event 1 - User: %s", ep.Kws.GetStringAttribute("user_id"))
	})
	socketio.On(types.DEPLOYMENT_LOG_STREAM_EVENT, deploymentHandler.StreamMachineDeployment)
	socketio.On(types.DEPLOYMENT_NOTIFICATION_EVENT, deploymentHandler.DeploymentNotification)
	
	
	// =================== socketio.New added for GET request =====================
        wsGroup.Get("/init", socketio.New(func(kws *socketio.Websocket) {
             // handle the connection
             // more examples here https://github.com/gofiber/recipes/blob/master/socketio/main.go
	}))
}

from contrib.

antoniodipinto avatar antoniodipinto commented on August 11, 2024 2

The url is the right one, this library is not meant to be compatible with socketio client. Use a standard javascript implementation to use this. Something like this:

let socket = new WebSocket("ws://127.0.0.1:8000/socket.io/init");

socket.onopen = function(e) {
  alert("[open] Connection established");
  alert("Sending to server");
  socket.send("My name is John");
};

// here you will receive
socket.onmessage = function(event) {
  alert(`[message] Data received from server: ${event.data}`);
};

socket.onclose = function(event) {
  if (event.wasClean) {
    alert(`[close] Connection closed cleanly, code=${event.code} reason=${event.reason}`);
  } else {
    // e.g. server process killed or network down
    // event.code is usually 1006 in this case
    alert('[close] Connection died');
  }
};

socket.onerror = function(error) {
  alert(`[error]`);
};

Send data like this

socket.send({
// the payload you expect to receive in fiber
});

Remember, to fire an event you should use the Fire function from the decoded message object

from contrib.

ReneWerner87 avatar ReneWerner87 commented on August 11, 2024 1

@antoniodipinto can you help here ?

from contrib.

struckchure avatar struckchure commented on August 11, 2024 1

Thanks a lot @antoniodipinto

This was very helpful!

from contrib.

struckchure avatar struckchure commented on August 11, 2024

Thanks @antoniodipinto

To be sure, my connection URL should looks something like this ws://127.0.0.1:8000/socket.io/init?
And also, would I be able to use the socket.io client with it?

I'm testing with postman with the ws client, it works, but it does not work with the socket-io client

from contrib.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.