pypush-plus-plus/config.py
2023-04-11 12:23:04 -04:00

25 lines
538 B
Python

import plistlib
import requests
# CONFIG_URL = "http://init-p01st.push.apple.com/bag"
CONFIG_URL = "https://init.push.apple.com/bag"
def get_config():
r = requests.get(CONFIG_URL, verify=False)
if r.status_code != 200:
raise Exception("Failed to get config")
# Parse the config as a plist
config = plistlib.loads(r.content)
# Parse the nested "bag" as a plist
# config["bag"] = plistlib.loads(config["bag"])
return config
if __name__ == "__main__":
config = get_config()
print(config)