php发送https请求
摘要:<?php function curl_get_https($url) { $curl = curl_init(); //如果需要参数,设置POST参数 $post_string = array('usercode'=>'123456','password'=>'123'); curl_setopt
阅读全文
posted @
2021-04-22 17:01
garfieldtom
阅读(293)
推荐(0) 编辑
python发起https请求
摘要:import urllib.request import ssl ssl._create_default_https_context = ssl._create_unverified_context response = urllib.request.urlopen('https://www.bai
阅读全文
posted @
2021-04-22 16:53
garfieldtom
阅读(1172)
推荐(0) 编辑