Getting a http status 405 error - What am I doing wrong? or Why am I seeing http status 405 and how d

16 Replies, 818 Views

405 usually means the method (POST/PUT) isn’t allowed for *that specific URL*.

Could be:
- Wrong URL (e.g., posting to `/users` instead of `/users/create`)
- Server-side routing misconfigured
- API versioning issue (maybe you’re hitting v1 instead of v2)

Try sniffing the traffic with Fiddler or Chrome DevTools to see what’s really happening.

Messages In This Thread



Users browsing this thread: 1 Guest(s)