我正尝试使用其文档https://developer.infusionsoft.com/authentication/#refresh-access-token
中的指南来刷新我的infusionsoft令牌。$url = "https://api.infusionsoft.com/token";
$client_id = '';
$client_secret = '';
$refresh_token = '';
$options = array(
'http' => array(
'header' => "Content-type: application/json\r\n".
"Authorization: Basic ". base64_encode($client_id. ":". $client_secret),
'grant_type' => 'refresh_token',
'refresh_token' => $refresh_token,
'method' => 'POST',
)
);
你有什么想跳的吗?我也正在Infusionsoft论坛上寻求帮助,但是我想知道你们中是否有人曾经这样做过。
答案 0 :(得分:1)
grant_type和其他变量需要作为post参数发送,您当前正在将它们作为http标头发送。