Webflow + htmX library

Hi to all!
I tried to connect htmx lib ( https://htmx.org/ ) to webflow but it didn’t work.
I got a response from the server like: “405 Method Not Allowed”.
Will be nice if anyone has a solution to this problem, thanks!

did you find a way to solve this yet?

HTMX is designed for lightweight app dev. Most likely you’re trying to send POST, PUT, PATCH, or DELETE requests to Webflow pages, which they don’t respond to.

You’ll be able to do anything fine that involves GET. Everything else you’ll need to build your own service layer somewhere ( e.g. Netlify serverless functions ) to handle those operations.