originally posted in:BungieNetPlatform
Has anyone successfully authenticated across XB Live to bungie.net via python? If so would you please share the relevant code?
-
Here's a snippet of how I do it, using the requests module (stolen from the Wikia, but I can't recall what particular page it was on): r = requests.get(manifest_url, headers=HEADERS) manifest = r.json() manifest_url being 'https://www.bungie.net/Platform/Destiny/Manifest' and HEADERS being {"X-API-KEY":'insertyourapikeyhere'} Hope that helps!
-
Looks like there's a Python solution on the [url=http://bungienetplatform.wikia.com/wiki/Authentication]Authentication Wikia[/url].