Error 401 when using get_manifests #394
-
I was following the example to try to download the game file using steam.cdn My Code import gevent.monkey
gevent.monkey.patch_all()
from steam.client import SteamClient
from steam.client import cdn
from steam.enums import EResult
import getpass
import sys
# ( Login Code )
if login_result == EResult.OK:
if client.logged_on:
print('OK')
else:
sys.exit(-1)
try:
cdn_client = cdn.CDNClient(client)
print(cdn_client.get_manifests(620980))
except:
pass
sys.exit(0) Error Message
|
Beta Was this translation helpful? Give feedback.
Answered by
rossengeorgiev
Jul 27, 2022
Replies: 1 comment 1 reply
-
Steam requires a manifest code in order to download content manifests. Either you are not using the latest version of the package, or your account doesn't have license for that app (cant acquire a manifest code). You can check the version with You can read about manifest codes at https://steamdb.info/blog/manifest-request-codes/ |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Serelue
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Steam requires a manifest code in order to download content manifests. Either you are not using the latest version of the package, or your account doesn't have license for that app (cant acquire a manifest code).
You can check the version with
python -m steam.versions_report
You can read about manifest codes at https://steamdb.info/blog/manifest-request-codes/