Martin

Results 26 comments of Martin

Hi @owohub, what Dumper are you using? And if it's the FinTS dumper, what bank is it? I'm asking this because I suspect that the problem lays outside of the...

Glad to hear that the curl command works! What endpoint are you using for the DKB? It should be: ```yaml # ... fints_endpoint: 'https://banking-dkb.s-fints-pt-dkb.de/fints30' fints_blz: 'YOUR_BLZ' ```

Hi @owohub, have you tried putting all values in quotes? It still sounds like the config file can't be parsed correctly. Can you please also verify that all needed parameters...

This is amazing @dequis! Thank you very much for your PRs. I just merged the other ones. Let me know how it works for you. I use two other banks,...

Hey @spruce! Thanks for this awesome PR!! This is a really good idea. After some researching I found that YNAB actually has a way to do this directly on their...

Hi @yuvke can you try the latest master? I merged https://github.com/schurig/ynab-bank-importer/pull/53 the other day and it could be that it works with this. https://github.com/railslove/cmxl/blob/master/lib/cmxl/fields/statement_details.rb#L45-L47

Hi @hahaa24, could you give it an other try with the following endpoint? `fints_endpoint: "https://banking-by7.s-fints-pt-by.de/fints30"`

It sounds a bit like either your `ynab_id` or `budget_id` is wrong. Do you mind double checking? In case it still happens, can you also post the stracktrace please?

Something like this would be amazing: ```yaml # docker-compose.yml services: app: build: context: . args: - NODE_VERSION=${cat .node-version} ``` ```Dockerfile # Dockerfile FROM node:${NODE_VERSION} ```