Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save marcobehlerjetbrains/75f5e082f07def8957fc0234076f7435 to your computer and use it in GitHub Desktop.

Select an option

Save marcobehlerjetbrains/75f5e082f07def8957fc0234076f7435 to your computer and use it in GitHub Desktop.
Spring Boot REF1 - Http Delete
(async function deletePhoto(id) {
await fetch("http://localhost:8080/photoz/" + id, {
method: "DELETE"
})
})("5")
@Amine1987
Copy link

Amine1987 commented Jun 30, 2025

@FilipeanSilva i got the same error using Postman with my url customized :

http://localhost:8080/photos/1

The JSON response pop up a 405

image

Don't know what to do

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment