Research and create middleware that works from the client side, to record calls made to a remote API.
# standard session
s = requests.Session()
s.get('https://httpbin.org/cookies/set/sessioncookie/123456789')
# logging session
s = resurface.Session(url, rules)
s.get('https://httpbin.org/cookies/set/sessioncookie/123456789')
Research and create middleware that works from the client side, to record calls made to a remote API.