memrootじしょ
英和翻訳
GET method
Parallel corpus
Unconditional election
Chebyshev nodes
blastulation
Immutable State
Characteristic polynomial
Collective action problem
ask for support
practical level
GET method
/ɡɛt ˈmɛθəd/
ゲットメソッド
1.
HTTPリクエストメソッドの一つで、主にウェブサーバーからリソース(データ)を取得するために使用されます。
ウェブブラウザがウェブページを表示したり、アプリケーションがAPIからデータを読み込んだりする際に、サーバーに対して「このリソースをください」と要求するための標準的な方法です。データをサーバーに送信して状態を変更するのではなく、サーバーにある情報を読み出す操作が目的です。通常、URLにパラメータを含めてリクエストを送信します。
Browsers
often
use
the
GET
method
when
a
user
navigates
to
a
new
page.
(ユーザーが新しいページに移動する際、ブラウザはよくGETメソッドを使用します。)
Browsers
ウェブブラウザを指します。
often use
しばしば利用することを意味します。
the GET method
HTTPリクエストの一つであるGETメソッドを指します。
when a user navigates
ユーザーが移動する時に、を意味します。
to a new page
新しいウェブページへ、を指します。
Data
sent
via
the
GET
method
appears
in
the
URL
as
query
parameters.
(GETメソッドで送信されたデータは、クエリパラメータとしてURLに表示されます。)
Data sent
送信されたデータを指します。
via the GET method
GETメソッドを通じて、を意味します。
appears in the URL
URLの中に現れることを意味します。
as query parameters
クエリパラメータとして、を指します。
The
GET
method
is
considered
'safe'
and
'idempotent'
because
it
doesn't
alter
server
state.
(GETメソッドはサーバーの状態を変更しないため、「安全」かつ「冪等」であると見なされます。)
The GET method
GETメソッドを指します。
is considered
~と見なされます、を意味します。
'safe' and 'idempotent'
「安全」かつ「冪等」であることを指します。
because it doesn't alter
~を変更しないため、を意味します。
server state
サーバーの状態を指します。
To
fetch
a
list
of
products,
one
typically
uses
the
GET
method
with
an
API
endpoint.
(製品のリストを取得するには、通常、APIエンドポイントと共にGETメソッドを使用します。)
To fetch a list of products
製品のリストを取得するために、を意味します。
one typically uses
人は通常使用します、を意味します。
the GET method
GETメソッドを指します。
with an API endpoint
APIのエンドポイントと共に、を指します。
Avoid
using
the
GET
method
for
sensitive
data
due
to
its
visibility
in
URLs.
(URLでの視認性のために、機密性の高いデータにはGETメソッドの使用を避けてください。)
Avoid using
使用を避けてください、を意味します。
the GET method
GETメソッドを指します。
for sensitive data
機密性の高いデータのために、を意味します。
due to its visibility
その視認性のために、を意味します。
in URLs
URLの中に、を指します。
関連
HTTP
POST method
PUT method
DELETE method
Request
Response
URL
Query String
API