Sprint 4 Flashcards

1
Q

Define API(Application Program Interface)

A

Allows software applications to communicate with each other

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

Define Web Services

A

API’s where both pieces of software are connected through the internet

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

Facts about REST

A
  • Server requests only contain the specific information needed to make a response. Only hold onto client data when processing a request.
  • Multi-layer structure, some components exchange data, while others distribute data streams
  • Each architectural component in REST is built based on clear rules as well as uniform components. Each component can be addressed with a request to a certain URL, and the request should have all the information needed for the component to process correctly
  • Whenever a server sends a response, it should already have instructions about which data should be cached and which should not be
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Define Postman

A

Tool that allows a tester to easily query and test API’s

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

Define cURL

A

Piece of software for transferring data to and from a server using different protocols including HTTP and HTTPS

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

Define Authentication

A

Process of verifying your identity when accessing digital resources

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

Define Authorization

A

Occurs after Authentication seeing what permissions you have

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

What are the types of Authorization?

A
  1. No Authorization: no key(token) is needed.
  2. Basic Authorization: Requires a username and password
  3. Bearer Token: Requires a special key (token).
  4. Inherit Auth from a parent: borrows permissions from a higher level
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly