May 2018
Beginner to intermediate
452 pages
11h 26m
English
Now that our test service is up and running, let's start working on the network function that will interact with the REST API:
import requests
...
def upload_to_corporate_rest(
filepath, upload_url, auth_url, username, password):
session = requests.session()
response = session.post( auth_url, data={'username': ...