Is it possible to connect directly with an api through Communications.makeWebRequest? Or do you have to post your data to a server first and then acquire it from there? For instance, if I wanted to post data to google sheets (or even an api that has very basic auth), can I do that directly through makeWebRequest? I've been attempting to post some data but keep getting -400 errors, while my flask server posts it successfully.
So I'm thinking about posting the data to my flask server first (which works) and then sending that to the ultimate application I want to analyze this data in. But I'd rather just connect directly. Not sure if anyone has experience with this.