Latha Krishnamurthi
Latha Krishnamurthi
I think I am able to use this by passsing 'allow_ntlm' flag as below. thank you ctx = ClientContext(site_url).with_user_credentials(username, password, allow_ntlm=True) web = ctx.web.get().execute_query() print(web.url)
what I mean by this is to send file and buffer in a single request using multipart/form-data. Seems like reading the file into a buffer is the only way ?...
Thank you so much Jason, I will check this out. Appreciate your quick response.
I did some modifications and now I am able to post a multipart request. I wrote my own readfunc which gets invoked when this header is set like how you...
Hi Jason, thanks for your quick response. I have picked out the selected API and written the test program. Please let me know if you need more info. This is...
if we just do this in a program, it leaks memory... ==========> CURL *curl = curl_easy_init(); curl_easy_cleanup(curl); or even this ======> curl_global_init(CURL_GLOBAL_ALL); CURL *curl = curl_easy_init(); curl_easy_cleanup(curl); curl_global_cleanup(); seems like...
curl version we are using and corresponding openssl. # curl --version curl 7.47.1 (x86_64-pc-linux-gnu) libcurl/7.47.1 OpenSSL/1.0.1f zlib/1.2.8 Protocols: dict file ftp ftps http https Features: AsynchDNS IPv6 Largefile NTLM SSL...
I was reading that curl_global_cleanup also has to be done ? should this be done after curl_easy_init() ?
Sorry what I meant is should the curl_global_cleanup be done after calling curl_easy_cleanup. I will try this your suggestion.