steampy
steampy copied to clipboard
{'strError': 'There was an error sending your trade offer. Please try again later. (8)'}
def test_buy(self, url, buy_price, refs=0, worst=0, scrap=3):
my_refs = next(iter(self.my_refs.keys()), None)
my_worst = next(iter(self.my_worst.keys()), None)
my_scrap = next(iter(self.my_scrap.keys()), None)
him_key = self.checker.find_another_keys(steamid=self.get_steam_id(url))
from_me = [Asset(my_refs, game=self.game, amount=refs)] + [Asset(my_worst, game=self.game, amount=worst)] \
+ [Asset(my_scrap, game=self.game, amount=scrap)]
from_him = [Asset(him_key, game=self.game, amount=1)]
print(from_me)
print(from_him)
print(him_key)
print(url, buy_price)
s = self.client.make_offer_with_url(items_from_me=from_me, items_from_them=from_him, trade_offer_url=url,
message='Test Case')
print(s)
['13868133941', '13864552331', '13864552097', '13864552073', '13864552046', '13864552017', '13864551991', '13864551971', '13864551958', '13864551946', '13864551915', '13864551881', '13864551838', '13864551816', '13864551799', '13864551790', '13864551775', '13864551765', '13864551747', '13864551679', '13864551655', '13864551629', '13864551576', '13864551483', '13864551445', '13864551434', '13864551421', '13864551403', '13864551384', '13864551372', '13864551355', '13864551342', '13864551328', '13864551310', '13864551297', '13864551282', '13864551259', '13864551228', '13864551218', '13864551205', '13864551186', '13864551160', '13864551136', '13864551036', '13864550979', '13864550853', '13864549628', '13864549602', '13864549586', '13861923746', '13861923744', '13861923734', '13861923728', '13861923716', '13861923712', '13861923711', '13861923707', '13861923704', '13861923702', '13861923656', '13861923653', '13861923652', '13861923647'] [<steampy.models.Asset object at 0x000001C98C9BEE30>, <steampy.models.Asset object at 0x000001C98C9BF130>, <steampy.models.Asset object at 0x000001C98C7DD3F0>] [<steampy.models.Asset object at 0x000001C98C7DD150>] ['13868133941', '13864552331', '13864552097', '13864552073', '13864552046', '13864552017', '13864551991', '13864551971', '13864551958', '13864551946', '13864551915', '13864551881', '13864551838', '13864551816', '13864551799', '13864551790', '13864551775', '13864551765', '13864551747', '13864551679', '13864551655', '13864551629', '13864551576', '13864551483', '13864551445', '13864551434', '13864551421', '13864551403', '13864551384', '13864551372', '13864551355', '13864551342', '13864551328', '13864551310', '13864551297', '13864551282', '13864551259', '13864551228', '13864551218', '13864551205', '13864551186', '13864551160', '13864551136', '13864551036', '13864550979', '13864550853', '13864549628', '13864549602', '13864549586', '13861923746', '13861923744', '13861923734', '13861923728', '13861923716', '13861923712', '13861923711', '13861923707', '13861923704', '13861923702', '13861923656', '13861923653', '13861923652', '13861923647'] https://steamcommunity.com/tradeoffer/new/?partner=11**********&token=sbI*****o&for_item=440_2_13861923647 61.0 {'strError': 'There was an error sending your trade offer. Please try again later. (8)'}
Maybe someone knows why this error always appears when the server responds? For reference, I have a trade-ban for a few days due to authenticator transfer, but that shouldn't affect it.
I'm getting the same error when I try to send multiple items. When I send only 1 item, it works