You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once I get that loaded into C++ all is happy. Does this library offer the capability to do such a thing? I've been looking through the documentation and can't seem to find anything.
I believe in python I could do something like this:
json.loads(URL)
Is there an equivalent in nlohmann/json?
Cheers and thanks!
The text was updated successfully, but these errors were encountered:
The library can parse from streams or strings, but not from URLs. You need to download the JSON with a different library and then use this library to parse the received data.
On Oct 22, 2018, at 9:25 AM, Niels Lohmann ***@***.***> wrote:
The library can parse from streams or strings, but not from URLs. You need to download the JSON with a different library and then use this library to parse the received data.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#1311 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AqUA8KHjXlnh44BMDmtDYcCO3PdGSu4Zks5uncdFgaJpZM4XzWuO>.
Hi there,
I'm new to the forum and recently starting using this library. Quick question..
For my project I need to parse JSON data from a web address..something that looks like this: https://public-api.adsbexchange.com/VirtualRadar/AircraftList.json?lat=37.995956&lng=-119.035278&fDstL=0&fDstU=50
Once I get that loaded into C++ all is happy. Does this library offer the capability to do such a thing? I've been looking through the documentation and can't seem to find anything.
I believe in python I could do something like this:
json.loads(URL)
Is there an equivalent in nlohmann/json?
Cheers and thanks!
The text was updated successfully, but these errors were encountered: