Jay Lee

Results 118 comments of Jay Lee

The l- in the wiki article name indicates legacy / deprecated. Easy to miss and we need to clean some of these up. Jay Lee On Thu, Sep 18, 2025,...

GitHub wiki is either wide open or allowlist. We have a process where edits to wiki/ in the main repostitory get pushed to the wiki. Create a PR for /wiki....

I'm still poking at it. Jay Lee On Thu, Oct 30, 2025 at 11:05 AM Ross Scroggs ***@***.***> wrote: > *taers232c* left a comment (GAM-team/GAM#1848) > > > Anymore magic...

Here's a rough start that seems to work for httplib2 / http.client debug output. Just add near top of `gam/__init__.py`: ``` def redact_sensitive_google_text(text): patterns = [ r'ya29.[0-9A-Za-z-_]+', # Access token...

Yeah, the challenge here is Google only recently (where recent might be any time in the last 10 years) changed some of these credential values to always match a certain...

You can release..we should mention the logs should be sanitized but anything shared publicly should be double-checked for sensitive content. Jay Lee On Fri, Oct 17, 2025, 3:31 PM Ross...

Can someone help me understand why all of the mTLS cert logic in `build_from_document()` is within the: ``` if http is None: ``` logic right here? https://github.com/jay0lee/google-api-python-client/blob/375e4397b1d4894dc9f97c2e6b7113c8e00222ab/googleapiclient/discovery.py#L592 It means that...

Here's a simple script that demonstrates this issue. The script should list the latest versions of Chrome across OS platforms. It makes one non-batch call to the API to get...

Yes, I'm working on adding mTLS client certificates and Chrome Enterprise Premium / Context Aware Access rules to restrict Google service access to a select list of client certificates, thus...

@clundin25 that makes sense. Do you think it'd make sense to keep all the client cert selection code which leads up to and includes: ``` http_channel.add_certificate(key_path, cert_path, "", passphrase) ```...