Using GET instead of POST to delete data behind authenticated pages

Posted by Matt Spradley on Stack Overflow See other posts from Stack Overflow or by Matt Spradley
Published on 2010-03-11T17:35:24Z Indexed on 2010/03/11 17:39 UTC
Read the original article Hit count: 231

I know you should use POST whenever data will be modified on a public website. There are several reasons including the fact that search engines will follow all the links and modify the data.

My question is do you think it is OK to use GET behind authenticated pages in something like an admin interface?

One example would be a list of products with a delete link on each row. Since the only way to get to the page is if you are logged in, is there any harm in just using a link with the product ID in the query string?

© Stack Overflow or respective owner

Related posts about best-practices

Related posts about http