???public function getToken() ???{ ???????$host = "http://apush1.market.alicloudapi.com"; ???????$path = "/getToken"; ???????$method = "POST"; ???????$appcode = "79c1ffbdb178459c955d41355dfcf88f"; ???????$headers = array(); ???????array_push($headers, "Authorization:APPCODE " . $appcode); ???????//根据API的要求,定义相对应的Content-Type ???????array_push($headers, "Content-Type".":"."application/x-www-form-urlencoded; charset=UTF-8"); ???????$querys = ""; ???????$bodys = "appId=24645837&userId=userTest1&expireAfterSeconds=60"; ???????$url = $host . $path; ???????$curl = curl_init(); ???????curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method); ???????curl_setopt($curl, CURLOPT_URL, $url); ???????curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); ???????curl_setopt($curl, CURLOPT_FAILONERROR, false); ???????curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); ???????//curl_setopt($curl, CURLOPT_HEADER, true); ???????if (1 == strpos("$".$host, "https://")) ???????{ ???????????curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); ???????????curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); ???????} ???????curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys); ???????//var_dump(curl_exec($curl)); ???????echo(curl_exec($curl)); ???}
阿里云 金融接口 token PHP
原文地址:https://www.cnblogs.com/shaoing/p/8975719.html