我从Stripe Payment开始,需要将用户连接到我的Stripe应用。我按照Stripe中的guildance来获取带有PHP代码的accesss_token:
// See full code example here: https://gist.github.com/3507366
if (isset($_GET['code'])) { // Redirect w/ code
$code = $_GET['code'];
$token_request_body = array(
'grant_type' => 'authorization_code',
'client_id' => 'ca_*************************',
'code' => $code,
'client_secret' => 'sk_test_************************'
);
$req = curl_init(TOKEN_URI);
curl_setopt($req, CURLOPT_RETURNTRANSFER, true);
curl_setopt($req, CURLOPT_POST, true );
curl_setopt($req, CURLOPT_POSTFIELDS, http_build_query($token_request_body));
// TODO: Additional error handling
$respCode = curl_getinfo($req, CURLINFO_HTTP_CODE);
$resp = json_decode(curl_exec($req), true);
curl_close($req);
echo $resp['access_token'];
} else if (isset($_GET['error'])) { // Error
echo $_GET['error_description'];
} else { // Show OAuth link
$authorize_request_body = array(
'response_type' => 'code',
'scope' => 'read_write',
'client_id' => 'ca_************************'
);
$url = AUTHORIZE_URI . '?' . http_build_query($authorize_request_body);
echo "<a href='$url'>Connect with Stripe</a>";
}
但Stripe的响应始终为null。以前有没有人遇到过这样的问题。这次任何帮助对我来说都是非常有价值的。
非常感谢。
答案 0 :(得分:2)
经过一段时间的调试,我发现问题出在我的PHP服务器的cURL库中。似乎cURL无法使用HTTPS。并基于此主题:PHP cURL Not Working with HTTPS 我找到了通过绕过验证来运行它的解决方案:
...
curl_setopt($req, CURLOPT_POSTFIELDS, http_build_query($token_request_body));
curl_setopt($req, CURLOPT_SSL_VERIFYPEER, false); // Bypass the verification
$resp = json_decode(curl_exec($req), true); // Now has response well.
...
P / s:这不是一个好的解决方案,更好的做更多的研究(here)
我希望这对像我这样的初学者有所帮助:)