File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1636,7 +1636,7 @@ QString GarminConnect::generateOAuth1AuthorizationHeader(
16361636 consumerSecret,
16371637 oauth_token_secret
16381638 );
1639- qDebug () << " GarminConnect: Final signature:" << signature;
1639+ // qDebug() << "GarminConnect: Final signature:" << signature;
16401640
16411641 // 6. Build authorization header
16421642 QString authHeader = " OAuth " ;
@@ -1669,9 +1669,9 @@ QString GarminConnect::generateOAuth1Signature(
16691669
16701670 qDebug () << " GarminConnect: ========== SIGNATURE GENERATION ==========" ;
16711671 qDebug () << " GarminConnect: Signing key (consumer_secret&token_secret):" ;
1672- qDebug () << " Consumer secret (encoded):" << percentEncode (consumerSecret);
1673- qDebug () << " Token secret (encoded):" << (oauth_token_secret.isEmpty () ? " (empty)" : percentEncode (oauth_token_secret));
1674- qDebug () << " Full key length:" << key.length ();
1672+ // qDebug() << " Consumer secret (encoded):" << percentEncode(consumerSecret);
1673+ // qDebug() << " Token secret (encoded):" << (oauth_token_secret.isEmpty() ? "(empty)" : percentEncode(oauth_token_secret));
1674+ // qDebug() << " Full key length:" << key.length();
16751675
16761676 // Build base string: METHOD&baseUrl¶ms
16771677 QString baseString = httpMethod.toUpper () + " &" + percentEncode (baseUrl) +
You can’t perform that action at this time.
0 commit comments