-
Notifications
You must be signed in to change notification settings - Fork 648
New issue
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
Invalid value "undefined" for header "PLAID-CLIENT-ID" #217
Comments
Hi @TheDutchMC! We tried this ourselves but haven't been able to reproduce this issue on a non-Kubernetes setup. As @skylarmb mentioned in #184, the Quickstart app makes assumptions that you're running it locally and hasn't been configured to support hosting it in this way. Can you reproduce the issue if you are running it locally? |
Fair point. Ill see if I can get it working locally. Thinking about it, I dont think I need to keep this app running indefinitely anyways, so that should be fine (Using it as per Firefly-iii's Plaid integration guide) |
@TheDutchMC Any updates? If it's still not working when configured locally, please let us know, otherwise I plan to close this issue out. |
My apologies for the delay, I've been a bit busy of the past week. I've set up the quickstart as per the guide in the README locally. Connecting to localhost:3000, the frontend shows, gives a 500 for favicon.ico, and the /api/info request is just stuck at pending (No errors that I can see in the backend). Might be important to note that I had to change the provided docker-compose file, in the file the I've tried the Node and Java backends, both give the same result. |
@lindawoo-plaid would you be able to take a look at this when you get a chance? I am a bit swamped. |
@TheDutchMC Why did you have to change the name property in the docker-compose file? Yes, this could have something to do with your error. What change did you make to it? (I'm trying to reproduce your error) |
Hey there, I had to remove the name property entirely. Docker compose errored with that it was not allowed there |
@skylarmb, Do you have any idea why Docker would not allow the "networks" property on their docker-compose file? This property is necessary for it to run on my machine. |
@TheDutchMC what version of docker / docker-compose are you running? the networks part of the docker-compose file is required for this app to work |
I'm on Docker version |
hmm @TheDutchMC i am using almost identical versions and I cannot reproduce this network issue, even if i remove the
ah, after reading this: #217 (comment) it seems that you are now stuck simply on a docker network issue, not the backend throwing an error. The issue you describe with the frontend network request hanging indefinitely does seem like its an issue with your docker network config and not the app itself. I tried removing the In the meantime ill continue to play with this to see if i can reproduce something |
Could you confirm real quick that you did not change any other env vars that affect networking such as |
Honestly, I'm not sure what was going wrong. I've recloned the repo, faced with the same docker compose error, so I took the key out, and now everyone on the Plaid side works fine. Not sure what was wrong, but I think it was a one off. I suppose it is then clear to close this issue |
thanks! Ill make a PR to remove Sounds like it was very likely some temporary network configuration issue on your machine 👍 |
Yep guessing as much :D |
I was getting this same error. I found I was calling for my environment variables in two different places so when i commented one of them out, it worked. |
Hey there,
I'm unable to get this quickstart going due to the error
Invalid value "undefined" for header "PLAID-CLIENT-ID"
which is thrown on the backend when I load the frontend.Here's my .env with some redacted values:
I've added a
.env
infrontend/
as per #184:I'm using the Docker container method, however I am running it on Kubernetes. I'm routing
/
to the frontend, and/api
to the backend, since that is what it seems to be making requests to.See the screenshot for the error in the frontend:
Screenshot of the error in the backend:
The text was updated successfully, but these errors were encountered: