Closed PanjiNamjaElf closed 4 years ago
Hey there,
Can you first please try one of the support channels below? If you can actually identify this as a bug, feel free to report back and I'll gladly help you out and re-open this issue.
Thanks!
I ran into this issue a few times, everytime was something misconfigured, make sure all redirect uris are correct, incluing in the database, the redirect column must have the same value as the redirect_uri parameter, make sure its the correct client id and secret
I know this is old but I just ran into this same issue and it was caused by blindly copying & pasting the URL parameters returned from the Authorization request (which began with "code") from the browser's address bar.
I had totally missed that the "state" value was also appended to the end... When I copied it all and pasted it into the next request as the value for "code" in Postman, it caused the above error due to the "code" value to be erroneous. It was so long that the field was cut off so it was easy to miss.
I spent wayyyy too much time debugging this until I finally noticed an "=" sign in the value and realized it contained the state value as well as the code value...
Hopefully my stupidity helps someone else...
Description:
When i set my consumer laravel app
.env
like on my laravel client app no errorBut when use different env for example
DB_CONNECTION=mysql
for consumer app andDB_CONNECTION=sqlite
for client app and also for differentAPP_KEY
i got error message like this..It seem my CLIENT app retrieve
.env
from CONSUMER app...Steps To Reproduce:
Stacktrace