We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I tray to get the transactions from a period longer than 90 days, a TAN is needed.
When I send the TAN with send_tan the response is always an empty list.
The log after the TAN is send is in the attachment tan_send.log
Without the TAN challange everything works fine.
The relevat code looks the folloring
def get_account_transactions(self, start: datetime.date = None, end: datetime.date = None): transactions = self.client.get_transactions(self.account, start_date=start, end_date=end) if isinstance(transactions, NeedTANResponse): transactions = self.tan_challenge(transactions) for transaction in transactions: yield transaction.data def tan_challenge(self, res): print("Eine TAN wird benötigt!") print(res.challenge) tan = input('TAN:') return self.client.send_tan(res, tan)
The text was updated successfully, but these errors were encountered:
I can confirm that your code works with GLS Gemeinschaftsbank ( https://hbci-pintan.gad.de/cgi-bin/hbciservlet ) and that after entering the PIN all transactions are returned.
Probably your bank does this differently
Sorry, something went wrong.
No branches or pull requests
When I tray to get the transactions from a period longer than 90 days, a TAN is needed.
When I send the TAN with send_tan the response is always an empty list.
The log after the TAN is send is in the attachment
tan_send.log
Without the TAN challange everything works fine.
The relevat code looks the folloring
The text was updated successfully, but these errors were encountered: