포스트맨(Postman)이 만들어준 코드로 예제 만들기 (C 언어, curl library)
위와 같이 작성 후, 포스트맨으로 아래와 같은 코드를 만들었다. CURL *curl; CURLcode res; curl = curl_easy_init(); if(curl) { curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "GET"); curl_easy_setopt(curl, CURLOPT_URL, "http://192.168.0.6:3000/"); curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); curl_easy_setopt(curl, CURLOPT_DEFAULT_PROTOCOL, "https"); struct curl_slist *headers = NULL; headers = curl_slist_append(headers..
2021. 10. 11.