- these are the calls used by the dexcom uploader app
- these are in no particular order!
User-Agent: Dexcom%20Share/3.0.2.11 CFNetwork/672.0.2 Darwin/14.0.0
GET
| #!/usr/bin/env python3 | |
| from __future__ import annotations | |
| import secrets | |
| import gzip | |
| import json | |
| import uuid | |
| import requests | |
| from dataclasses import dataclass, asdict, is_dataclass, field | |
| from Crypto.PublicKey import RSA | |
| from Crypto.Cipher import AES, PKCS1_v1_5 |