Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Getting 403 Error on PUT | PATH | DELETE Request #2368

Closed
rifaideen opened this issue Feb 23, 2024 · 1 comment
Closed

Getting 403 Error on PUT | PATH | DELETE Request #2368

rifaideen opened this issue Feb 23, 2024 · 1 comment

Comments

@rifaideen
Copy link

I'm trying to configure the PUT request handler with the code below, however when I hit the API I'm getting 403 error.

func (c *Controller) BeforeActivation(b mvc.BeforeActivation) {
	b.Handle("PUT", "/{id:string}", "Put")
}

func (c *Controller) Put(ctx iris.Context) {
	id := ctx.Params().Get("id")

	ctx.WriteString(id)
}
@rifaideen
Copy link
Author

As it was due to CORS misconfiguration, closing this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant