Hello! I'm new to monkey C and I'm trying to develop a program which gets json data from internet. I'm currently following that first example of page:
https://developer.garmin.com/connect-iq/core-topics/https/
I'm in that point, that I am able to call makeRequest function from my "main" function and print data to debug console from that onReceive function. But how can I return that fetched data from makeRequest function so I could handle that data in my "main" function? Maybe should use that responseCallback variable which is some kind of Method?