CURLOPT_XOAUTH2_BEARER.md: change token to not trigger typos with "ba"

This commit is contained in:
Viktor Szakats 2025-07-16 13:05:14 +02:00
parent f0a5207484
commit b6a273a693
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -58,7 +58,7 @@ int main(void)
if(curl) {
CURLcode res;
curl_easy_setopt(curl, CURLOPT_URL, "pop3://example.com/");
curl_easy_setopt(curl, CURLOPT_XOAUTH2_BEARER, "1ab9cb22ba269a7");
curl_easy_setopt(curl, CURLOPT_XOAUTH2_BEARER, "1ab9cb22bf269a7");
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
}