Lines Matching defs:curl
12 * are also available at https://curl.se/docs/copyright.html.
21 * SPDX-License-Identifier: curl
33 CURL *curl;
37 easy_init(curl);
38 easy_setopt(curl, CURLOPT_HTTPAUTH, CURLAUTH_BEARER);
39 easy_setopt(curl, CURLOPT_XOAUTH2_BEARER,
41 easy_setopt(curl, CURLOPT_SASL_AUTHZID,
43 easy_setopt(curl, CURLOPT_URL, URL);
47 res = curl_easy_perform(curl);
53 curl_easy_cleanup(curl);