Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm stuck on the problem while getting HTTP data into char* from google places API(text search requests, https://developers.google.com/places/documentation/search) using libcURL, in C.

this is a part of my code :

#include <stdio.h>
#include <curl/curl.h>

#define RESULT_SIZE 1024

char result[RESULT_SIZE];

static size_t write_data(char* buf, size_t size, size_t count, void *stream) {
    int c;
    for(c=0;c<size*count;c++)
        result[c]=buf[c];
    return size*count;
}

int main(void) {
    int i;
    char* query[300] = "";
    CURL *curl;
    CURLcode res;

    //initializing..
    for(i=0;i<RESULT_SIZE;i++)
        result[i]=0;
    curl_global_init(CURL_GLOBAL_ALL);
    curl = curl_easy_init();

    // make query sentence
    strcat(query,"https://maps.googleapis.com/maps/api/place/textsearc/json?query=40.690043,-74.045062&key=<myGoogleAPIkey>");

    curl_easy_setopt(curl, CURLOPT_URL, query);
    curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);

    res = curl_easy_perform(curl);

    printf("%s\n", result");
}

and the result i wanted is :

{
   "html_attributions" : [],
   "results" : [
      {
         "formatted_address" : "Statue of Liberty National Monument, Statue Of Liberty, 292 Madison Ave, New York, NY 10017, USA",
         "geometry" : {
            "location" : {
               "lat" : 40.69004950,
               "lng" : -74.04506750
            },
            "viewport" : {
               "northeast" : {
                  "lat" : 40.69850950,
                  "lng" : -74.02906010
               },
               "southwest" : {
                  "lat" : 40.68158840,
                  "lng" : -74.06107489999999
               }
            }
         },
         "icon" : "http://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png",
         "id" : "c42384e74cfe05bd24d144b520b95cab496b9593",
         "name" : "Statue of Liberty National Monument",
         "reference" : "CpQBiwAAAJB0nFYotkps-eKyoe4WdSHfbKjGcQKSslzCtxpYrmZXS4-0jEXXz_iQV5ngCostzgcMQwrzLFFoJuY8OTlxltNs0GEVuslLNUjPSw4qMHKA-UIZ4_uPAbGONiLaYK5rW4UE--Ff0CTkaRTWsykQoEhJi8Vtekk1RgaexuJgjrsrWOf8HqCsw_mTXa24fqzYUhIQj-AwBAZy08dB0Y8jUZ0bERoUpKEkf-KXVCGrRGayir9y1KOnBpA",
         "types" : [ "point_of_interest", "establishment" ]
      }
   ],
   "status" : "OK"
}

but my program prints out :

PUIJhMF-RoUWJ53xFJbynmmPscOUglzfinXnoE",
     "types" : [ "point_of_interest", "establishment" ]
  }
   ],
   "status" : "OK"
}
iberty, 292 Madison Ave, New York, NY 10017, USA",
         "geometry" : {
            "location" : {
               "lat" : 40.69004950,
               "lng" : -74.04506750
            },
            "viewport" : {
               "northeast" : {
                  "lat" : 40.69850950,
                  "lng" : -74.02906010
               },
               "southwest" : {
                  "lat" : 40.68158840,
                  "lng" : -74.06107489999999
               }
            }
         },
         "icon" : "http://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png",
         "id" : "c42384e74cfe05bd24d144b520b95cab496b9593",
         "name" : "Statue of Liberty National Monument",
         "reference" : "CpQBigAAAIIwNFStfq0qjoQp-alxRtjFkaonf462dz_qHebtyT8zwc-WrtGdKmEWF-s05xhZasmbfG2wjqsWR_9UBvWfvo5hXTRTEhFCvD4AxdfJ5sWZIJ1_Rp2RpPdibI0aN30vkjXjATkyrv3W7T8pqZZnEU-zGvO_PhtZh05QJbp0Tw4sxKjgUBrfzw2sKCVXpUXQWBIQ_6rPxztrs4rSI

...a mashed-up-string like this.

am i doing something wrong? then how can i get intact JSON type data? or any recommendation better than coding in C? (actually, i've got sick of treating string format using in C..:()

thanks in advance.

share|improve this question

1 Answer

up vote 0 down vote accepted

try to fix this error first:

printf("%s\n", result");

should be

printf("%s\n", result);

PLUS... RESULT_SIZE is too small. Increase it.

PLUS... everytime you got a block of data and the write function is called, result array will be overwritten from the first byte instead of concat the result

share|improve this answer
thanks. the problem was the function 'write-data' overwrites the same buffer, and result shows that overlapped string. i fixed it now, and it works. – perprit Jan 22 at 5:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.