GET gửi dữ liệu qua URL (query string), giới hạn kích thước, có thể bookmark. POST gửi trong body request, không giới hạn kích thước.
Lưu ý: POST không tự bảo mật hơn GET — cần HTTPS để bảo vệ dữ liệu. GET cho truy vấn, POST cho dữ liệu lớn/thay đổi state.
GET sends data via the URL (query string), has a size limit, and is bookmarkable. POST sends data in the request body, has no size limit.
Note: POST is not inherently more secure than GET — HTTPS is needed to protect data in both cases. Use GET for queries, POST for large data or state-changing operations.