Summary: | Extend libalkimia to support fetching online quotes by POST request | ||
---|---|---|---|
Product: | [Frameworks and Libraries] alkimia | Reporter: | Ralf Habacker <ralf.habacker> |
Component: | General | Assignee: | KMyMoney Devel Mailing List <kmymoney-devel> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | 8.0.3 | ||
Target Milestone: | 8.2 | ||
Platform: | Other | ||
OS: | All | ||
Latest Commit: | https://commits.kde.org/alkimia/aecc1e2034edb616625a3247539463e69cef2049 | Version Fixed In: | 8.2.0 |
Sentry Crash Report: |
Description
Ralf Habacker
2020-09-21 12:52:50 UTC
For such support a test service has been added to the kmymoney web site. Post requests can be checked by using the following url: curl -X POST -H "Content-Type: application/x-www-form-urlencoded" -d "a=ORCL" https://kmymoney.org/onlinequotestest.php On adding an online source for investing.com with bug 429440 it turned out, that there is no post request required to fetch associated sources. (In reply to Ralf Habacker from comment #2) > On adding an online source for investing.com with bug 429440 it turned out, > that there is no post request required to fetch associated sources. To be prepared for future needs a related support has been added to the alkimia code base. Git commit 11eb556b2f1cb2589d84f4e345ecf12b0b5d919d by Ralf Habacker. Committed on 07/07/2021 at 06:36. Pushed by habacker into branch 'master'. Complete post request support M +5 -0 src/alkwebpage.cpp https://invent.kde.org/office/alkimia/commit/11eb556b2f1cb2589d84f4e345ecf12b0b5d919d (In reply to Ralf Habacker from comment #4) > Complete post request support POST requests are processed by adding 'method=post' to the request url. |