WeSearch

Fixing Google BigQuery Auth Proxying

·1 min read · 0 reactions · 0 comments · 10 views
#googlecloud#bigquery#csharp
Fixing Google BigQuery Auth Proxying
⚡ TL;DR · AI summary

The article discusses a solution for routing authentication traffic through a proxy when using Google BigQuery client libraries in C#. It highlights the issue where authentication and token refresh requests bypass the proxy, leading to timeouts. The recommended fix involves using a proxied GoogleCredential in the client builder configuration.

Key facts
Original article
DEV.to (Top)
Read full at DEV.to (Top) →
Opening excerpt (first ~120 words) tap to expand

try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3946739) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Ryan Esteves Posted on May 22 Fixing Google BigQuery Auth Proxying #dotnet #googlecloud #aspdotnet #bigquery TL;DR builder.Credential = credential; - Fails to route authentication traffic through the proxy. builder.GoogleCredential = credential; - Successfully routes OAuth token requests through the proxy.

Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).

Anonymous · no account needed
Share 𝕏 Facebook Reddit LinkedIn Threads WhatsApp Bluesky Mastodon Email

Discussion

0 comments

More from DEV.to (Top)