Playin' Around with PiCloud's REST API
I was playing around with PiCloud’s REST API and had a bit of fun writing a C client for it. Now, why C? Well, because one of the reasons they provide a REST API is for your non-Python programs to easily access your Python code on PiCloud.
What I did is simple: I published the square_func using PiCloud’s documentation. Then I used libcurl’s C Interface to replicate the curl statements provided in the documentation. I have
written the client in two parts: client1.c and client2.c. client1.c
invokes the published function, hence gets the Job ID. client2.c then
uses this jobID to get the result. Here are the source codes:
/*client1.c*/
/* This part of the client invokes the REST API of
PiCloud and retrieves the Job ID
http://docs.picloud.com/rest.html#invoking-functions
*/
#include <stdio.h>
#include <curl/curl.h>
int main(void)
{
CURL *curl;
/* Make sure you set this appropriately*/
char *url="https://api.picloud.com/r/3222/square_func/";
CURLcode res;
curl = curl_easy_init();
if(curl) {
/* First set the URL that is about to receive our POST. This URL can
just as well be a https:// URL if that is what should receive the
data. */
curl_easy_setopt(curl, CURLOPT_URL, url);
/* Specify the user/pass */
curl_easy_setopt(curl,CURLOPT_USERPWD,"apikey:secretkey");
/* Now specify the POST data */
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "x=5");
/* For HTTPS */
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
/* Perform the request, res will get the return code */
res = curl_easy_perform(curl);
printf("\nResult of Operation:: %d\n", res);
/* always cleanup */
curl_easy_cleanup(curl);
}
return 0;
}
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)



