0
0
Rest APIprogramming~10 mins

Content negotiation in Rest API - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Content negotiation
Client sends HTTP request with Accept header
Server reads Accept header
Server checks supported content types
Match found?
NoSend 406 Not Acceptable
Yes
Server sends response in matched content type
The client requests a specific content type via the Accept header; the server checks if it supports it and responds accordingly or sends an error.
Execution Sample
Rest API
GET /data HTTP/1.1
Host: example.com
Accept: application/json

--- Server checks Accept header ---
If 'application/json' supported:
  Respond with JSON data
Else:
  Respond 406 Not Acceptable
This example shows a client requesting JSON data and the server responding with JSON if supported.
Execution Table
StepActionAccept HeaderServer Supported TypesMatch Found?Server Response
1Client sends requestapplication/jsonapplication/json, text/htmlYesWaiting for server processing
2Server reads Accept headerapplication/jsonapplication/json, text/htmlYesChecking supported types
3Server finds matchapplication/jsonapplication/json, text/htmlYesPrepare JSON response
4Server sends responseapplication/jsonapplication/json, text/htmlYes200 OK with JSON data
5Client sends requestapplication/xmlapplication/json, text/htmlNoWaiting for server processing
6Server reads Accept headerapplication/xmlapplication/json, text/htmlNoChecking supported types
7Server finds no matchapplication/xmlapplication/json, text/htmlNoSend 406 Not Acceptable
💡 Execution stops after server sends response or 406 error based on content negotiation
Variable Tracker
VariableStartAfter Step 1After Step 3After Step 4After Step 5After Step 7
Accept HeaderNoneapplication/jsonapplication/jsonapplication/jsonapplication/xmlapplication/xml
Server Supported Typesapplication/json, text/htmlapplication/json, text/htmlapplication/json, text/htmlapplication/json, text/htmlapplication/json, text/htmlapplication/json, text/html
Match Found?NoYesYesYesNoNo
Server ResponseNoneWaiting for server processingPrepare JSON response200 OK with JSON dataWaiting for server processing406 Not Acceptable
Key Moments - 3 Insights
Why does the server send a 406 Not Acceptable response?
Because the Accept header requests a content type the server does not support, as shown in execution_table rows 5-7 where 'application/xml' is not matched.
What happens if the Accept header is missing?
The server usually sends a default content type response, but this example assumes Accept header is present; without it, server picks a default supported type.
Can the Accept header list multiple types?
Yes, the Accept header can list multiple types with priorities; the server picks the best match from its supported types.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, what is the server response at step 4?
A200 OK with JSON data
B406 Not Acceptable
CWaiting for server processing
DPrepare XML response
💡 Hint
Check the 'Server Response' column at step 4 in execution_table
At which step does the server determine no matching content type is found?
AStep 3
BStep 6
CStep 7
DStep 2
💡 Hint
Look for 'Match Found?' = No and 'Server Response' = 'Send 406 Not Acceptable' in execution_table
If the client changes Accept header to 'text/html', what would be the server response?
A406 Not Acceptable
B200 OK with HTML data
C200 OK with JSON data
DWaiting for server processing
💡 Hint
Server supports 'text/html' as per 'Server Supported Types' in variable_tracker
Concept Snapshot
Content negotiation lets clients tell servers what data format they want using the Accept header.
Server checks if it supports the requested type.
If yes, server sends data in that format.
If no, server sends 406 Not Acceptable error.
This helps clients get data they can understand.
Full Transcript
Content negotiation is a process where a client sends an HTTP request with an Accept header specifying the desired content type, such as application/json. The server reads this header and compares it to the content types it supports. If the server supports the requested type, it responds with data in that format and a 200 OK status. If not, it responds with a 406 Not Acceptable error. This process ensures clients receive data in a format they can handle. The execution table shows steps where the server reads the Accept header, checks for matches, and sends the appropriate response. Variables like Accept Header, Server Supported Types, Match Found, and Server Response change during these steps. Common confusions include why a 406 error is sent and what happens if the Accept header is missing or lists multiple types. The visual quiz tests understanding of these steps and responses.