This question will be rather general, as I haven't even gotten to coding yet and am just wondering if it is possible to achieve what I want with lwIP.
What I would like, is for my embedded STM32F769I-Disco board to call a website URL API, e.g. http://test.com/items/1, which returns JSON, which I would then like to parse.
Since lwIP implements a TCP/IP stack, this should theoretically be possible with it, or am I mistaken?
I haven't really found any examples that would do this, or maybe I don't even know how to search for it. Any helpful pointers?
The question is also, should I perhaps use a socket connection rather than trying to call an API url? If I decided to use something like nanopb, would I still need lwIP, or could I do without it?