Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
HTTP Key-Value Request
00:00
5 left

HTTP Key-Value Request

MediumPython

Problem

How would you create an HTTP request to store and retrieve a key-value pair in a backend service?

Implement a function that builds request specifications without sending them. The store request must use PUT, JSON-encode the value, and URL-encode the key. The retrieve request must use GET and the same encoded resource URL.

Input and Output

build_requests(base_url, key, value) receives a base URL, a string key, and a JSON-compatible value. Return a dictionary containing store and retrieve request specifications with method, url, headers, and body fields.

Constraints

  • base_url is a non-empty string containing the scheme and host
  • key is a non-empty string
  • value is JSON-compatible
  • Do not send network requests
  • The returned store and retrieve URLs must be identical

Function Signature

def build_requests(base_url, key, value):
Interviewer

Your question is HTTP Key-Value Request. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.