Terms Flashcards

1
Q

Idempotent

A

Making multiple identical requests has the same effect as making a single request.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Idempotent requests

A

GET, PUT, DELETE, HEAD, OPTIONS, and TRACE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Cross-Origin Resource Sharing (CORS)

A
  1. foo.com requests OPTIONS method on bar.com
  2. bar.com sends a header like Access-Control-Allow-Origin: http://foo.com in response to the client
  3. Next, foo.com can access the resources on bar.com without any restrictions that call any REST method
How well did you know this?
1
Not at all
2
3
4
5
Perfectly