Streaming data from the cloud in labview

Hi all,

I am trying to create a labview interface that listens to the particle cloud stream and just displays the data.

when i type this in a command line:

curl https://api.particle.io/v1/events?access_token=<>

I can see all the data from everyone’s stream. But I cant seem to get this same data in Labview using the standard HTTP vis. ( I do have most of all other functionality implemented)

any hints or suggestions on how to do this?

Try

curl https://api.particle.io/v1/devices/events?access_token=<yourToken>

you can even filter for a specific device of yours

curl https://api.particle.io/v1/devices/<yourDeviceID>/events?access_token=<yourToken>