DEV Community

MakotoNin
MakotoNin

Posted on

what diffrient between GET method POST method and

GET Method
Example: Sending a search query, registering only a username, sending information that can be public.

Characteristics: The data is included in the URL, making it easy to share or bookmark.(GET メソッド
例:検索クエリの送信、ユーザー名のみの登録、公開しても問題ない情報の送信
特徴:データがURLに含まれ、共有やブックマークが簡単です。)      
 

POST Method
Example: Sending a password, address, personal information, or uploading files.

Characteristics: The data is included in the HTTP request body, which makes it more secure and has no limit on the amount of data you can send.(POST メソッド
例:パスワード、住所、個人情報の送信、ファイルのアップロード

特徴:データはHTTPリクエストのボディに含まれ、より安全で、送信できるデータ量に制限がありません。)

Top comments (0)