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
If we add the Budget Insight baseUrl configuration without a / at the end, the generated URL becomes wrong.
baseUrl
/
Example:
{ "budgetInsight": { "url": "https://some-sandbox.biapi.pro/2.0", "clientId": "id", "clientSecret": "secret" } }
Generated URL: https://some-sandbox.biapi.pro/2.0auth/webview/fr/connect?client_id=id...
https://some-sandbox.biapi.pro/2.0auth/webview/fr/connect?client_id=id...
The / is automatically added if it is missing at the end of the URL.
The text was updated successfully, but these errors were encountered:
Merge pull request algoan#126 from tobudim/master
7c73e9e
feat: use cache to store GET /categories for 24h algoan#124
fix(budget-insight.client): parse default URL
2b66fe6
Parse the default URL to ensure there is no extra slashes fix algoan#126
Merge pull request #312 from ccoeurderoy/imp/e2e-tests
e43f579
[FEAT] E2E Tests improvements and fix #126
🎉 This issue has been resolved in version 2.11.1 🎉
The release is available on:
v2.11.1
Your semantic-release bot 📦🚀
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Actual behavior
If we add the Budget Insight
baseUrl
configuration without a/
at the end, the generated URL becomes wrong.Example:
Generated URL:
https://some-sandbox.biapi.pro/2.0auth/webview/fr/connect?client_id=id...
Expected behavior
The
/
is automatically added if it is missing at the end of the URL.The text was updated successfully, but these errors were encountered: