Open jkms opened 6 years ago
It seems to be failing at downloading the ticket. Maybe I should catch that in case the rest of the contents are available...
It seems to have to do with the two servers:
sysbase = 'http://nus.cdn.c.shop.nintendowifi.net/ccs/download/' + tid
appbase = 'http://ccs.cdn.c.shop.nintendowifi.net/ccs/download/' + tid
the "nus" server doesn't work for updates, but the ccs server does.
I was able to make it work by commenting out line 76:
if tid[4:8] not in app_categories:
# base = sysbase
print('Downloading CETK (title.tik)...')
with open(tid + '/title.tik', 'wb') as f:
download(base + '/cetk', False, f)
Please read my post here. ^-^ I would like to contribute your script of what is found to that of something else. The only things useful here that can be used are extract.py and decrypt py. As the servers for updates will not work as contributed. If it is the ccs server, it is from source.
In file wiiu_cdndownload add the line 26 '000E', to be able to download updates
app_categories = {
'0000', # application
'0002', # demo
'000C', # DLC
'000E', # update
}
Anytime I try and download an update (anything starting with 0005000E), I receive a 503 error. Regular downloads (00050000) still work fine. I was a little gun-shy to post, after the last issue seemed to resolve itself, but this has been consistent for a few days.
Thoughts?