MCPcopy Create free account
hub / github.com/su-kaka/gcli2api / get_googleapis_proxy_url

Function get_googleapis_proxy_url

config.py:393–407  ·  view source on GitHub ↗

Get Google APIs proxy URL setting. 用于Google APIs调用的代理URL。 Environment variable: GOOGLEAPIS_PROXY_URL Database config key: googleapis_proxy_url Default: https://www.googleapis.com

()

Source from the content-addressed store, hash-verified

391
392
393async def get_googleapis_proxy_url() -> str:
394 """
395 Get Google APIs proxy URL setting.
396
397 用于Google APIs调用的代理URL。
398
399 Environment variable: GOOGLEAPIS_PROXY_URL
400 Database config key: googleapis_proxy_url
401 Default: https://www.googleapis.com
402 """
403 return str(
404 await get_config_value(
405 "googleapis_proxy_url", "https://www.googleapis.com", "GOOGLEAPIS_PROXY_URL"
406 )
407 )
408
409
410async def get_resource_manager_api_url() -> str:

Callers 1

get_user_infoFunction · 0.90

Calls 1

get_config_valueFunction · 0.85

Tested by

no test coverage detected