This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# trans_id -> شماره ارجاع یا پیگیری | |
# card -> چهار رقم آخر شماره کارت بانکی | |
# amount -> مبلغ تراکنش به ریال | |
# با تغییر در کد میتوانید کلیه تراکنش هارو چک کنید. ولی این فقط برای تراکنش های ورودی کارت به کارت هستش | |
def check_payment(trans_id, card, amount): | |
login_url = 'https://my.bmi.ir/portalserver/j_spring_security_check' | |
headers = {'Content-Type': 'application/x-www-form-urlencoded', 'Accept': 'application/json'} | |
username = '' |