master
elf 2 years ago
parent b0da5ad660
commit 9297ebe263

@ -33,9 +33,10 @@ class Client
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_POST, true);
$headers = ['Content-Type: application/x-www-form-urlencoded'];
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($params));
// $headers = ['Content-Type: application/x-www-form-urlencoded'];
// curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
// curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($params));
curl_setopt($curl, CURLOPT_POSTFIELDS, $params);
$response = curl_exec($curl);
curl_close($curl);
return $response;

@ -19,6 +19,7 @@ class Signer
}
$signPrams[] = 'paySecret=' . $paySecret;
$signString = implode('&', $signPrams);
Log::write('SIGN_STRING: ' . $signString);
return strtoupper(md5($signString));
}

Loading…
Cancel
Save