在最后一次检索令牌的过程中,我正在执行以下操作:
False
响应机构看起来像这样:
$HttpSocket = new HttpSocket();
$q = array(
'grant_type'=>'authorization_code',
'client_id'=>Configure::read('Mailchimp.ClientId'),
'client_secret'=>Configure::read('Mailchimp.ClientSecret'),
'redirect_uri'=>urlencode(Router::url('/connected_apps/mailchimp', true)),
'code'=>$_GET['code']
);
$res = $HttpSocket->post('http://login.mailchimp.com/oauth2/token', $q);
echo($res->body());
exit;
这是调试请求的结果。
‹ÿÿ