-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
buy_item can't start #396
Comments
забанило айпи из-за частых запросов (я забыл за них и только что свой тоже забанил :) ) |
Коллеги, кто шарит сколько по новым ограничениям можно запросов сейчас делать? |
опять новые ограничения ввели? Раньше не более 20 запросов в минуту было (1 запрос раз в ~4 секунды) |
Да, как будто где-то месяц назад или меньше все стали чаще 429 код ответа ловить за слишком частые запросы. |
нет, это не так, там другая ошибка. |
@laifodes и че делать? |
ну так какая? |
The item is on the market, but you can’t buy it.
from steampy.client import SteamClient
from steampy.models import Currency, GameOptions
import json
with open('account_info.txt', 'r') as acc:
login, password, api_key, steam_id, shared_secret, identity_secret = acc.read().split(',')
steam_client = SteamClient(api_key=api_key)
steam_guard JSON
steam_guard_data = json.dumps({
"steamid": steam_id,
"shared_secret": shared_secret,
"identity_secret": identity_secret
})
with SteamClient(api_key, login, password, steam_guard_data) as client:
print(steam_client.is_session_alive())
response = client.market.buy_item('R8 Revolver | Bone Mask (Well-Worn)', '4911820044455752514', 93, 12,
GameOptions.CS, Currency.RUB)
The text was updated successfully, but these errors were encountered: