HTTPS POST to Google Sheets for Low (no) Power Spark applications

Gotcha - thanks! Getting closer. I’m going through the weather example, and have in my code:

// Lets listen for the hook response
Spark.subscribe("hook-response/get_weather", gotWeatherData, MY_DEVICES);

…but I’m not sure what I should put for MY_DEVICES ?
I tried #define it as a variable and included my deviceID, but it didn’t work.
When I subscribe to my own hooks - I see the weather info, but also a “coreid”:“undefined”

Not quite sure what isn’t coming together. My code currently includes:

   #define MYDEVICE "55ff_rest_of_device_ID_3" 

   Spark.subscribe("hook-response/get_weather", gotWeatherData, MYDEVICE);