企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
## CURL::getheader ### 接口说明 >将curl_easy_perform服务器返回消息头输出 > +++ put:getheader <<< success 无返回值 +++ ### 代码演示 ~~~ import ["curl"]; var url = curl.curl_easy_init(); curl.curl_easy_setopt(url,curl.CURLOPT_URL,"http://www.baidu.com"); curl.curl_easy_perform(url); println(url.getheader()); ~~~