Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from hashlib import sha256
- amount = format(10, ".2f") # Добавит к числу два нуля после точки, без этого не будет работать
- user_id = 242175861
- group_id = 168433436
- secret_key = 'secret_key'
- array_sign = [str(group_id), str(user_id), amount, secret_key] # Все переменные должны быть типа str
- array_sign = sha256(':'.join(array_sign).encode('utf-8')).hexdigest()
- link = f"https://vlito.ru/paying/?bot_id={group_id}&amount={amount}&p=Доп параметры&vk_id={user_id}&sign={array_sign}"
- print(link)
Add Comment
Please, Sign In to add comment