Created
January 20, 2021 15:20
-
-
Save BoboTiG/9865938748bf58b1fc2258b26079c9fb to your computer and use it in GitHub Desktop.
Medium - The Mystery of the Endless HTTPS Call
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import urllib3 | |
url = "https://<HOST>/nuxeo/api/v1/upload/<BATCH_ID>/0/execute/FileManager.Import" | |
headers = { | |
"X-Batch-No-Drop": "true", | |
"Content-Type": "application/json", | |
"Cookie": "X-Authentication-Token=<TOKEN>", | |
} | |
params = {"context": {"currentDocument":"/default-domain/UserWorkspaces/<USER>"}} | |
body = json.dumps(params).encode("utf-8") | |
try: | |
req = http.request("POST", url, headers=headers, body=body, retries=False, redirect=False) | |
except KeyboardInterrupt: | |
print("CTRL+C hit!") | |
else: | |
print(json.loads(req.data.decode("utf-8"))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment