MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / post

Method post

src/core/http_client.py:151–153  ·  view source on GitHub ↗

发送 POST 请求

(self, url: str, data: Any = None, json: Any = None, **kwargs)

Source from the content-addressed store, hash-verified

149 return self.request("GET", url, **kwargs)
150
151 def post(self, url: str, data: Any = None, json: Any = None, **kwargs) -> Response:
152 """发送 POST 请求"""
153 return self.request("POST", url, data=data, json=json, **kwargs)
154
155 def put(self, url: str, data: Any = None, json: Any = None, **kwargs) -> Response:
156 """发送 PUT 请求"""

Callers 15

_submit_auth_startMethod · 0.45
_register_passwordMethod · 0.45
_create_user_accountMethod · 0.45
_select_organizationMethod · 0.45
_select_workspaceMethod · 0.45
_request_onceFunction · 0.45
check_sentinelMethod · 0.45
fetch_sentinel_challengeFunction · 0.45

Calls 1

requestMethod · 0.95

Tested by

no test coverage detected