MailChimp OAuth2 访问令牌
Posted
技术标签:
【中文标题】MailChimp OAuth2 访问令牌【英文标题】:MailChimp OAuth2 Access Token 【发布时间】:2018-07-17 04:16:57 【问题描述】:这个问题与其他已经被问过的问题相似,但答案没有帮助,而且我认为缺少一个关键部分。我处于 MailChimp OAuth2 流程的第 4 步,这需要向授权 url (see here) 发送带外帖子。它不断返回错误:invalid_grant,据我所知,它可以指示许多不同的错误。这是我的代码(我使用的是 Yii2)。
// Controller action (authorize)
public function actionMailchimpAuthorize()
$redirect_uri = Url::toRoute(['controller/mailchimp-token'], 'https');
$base_uri = 'https://login.mailchimp.com/oauth2/authorize';
$params = '?response_type=code&client_id=' . Model::CLIENT_ID . '&redirect_uri=' . urlencode($redirect_uri);
$authorize_uri = $base_uri . $params;
return $this->render('mailchimpAuthorize', [
'authorize_uri' => $authorize_uri,
]);
// Controller action (token)
public function actionMailchimpToken($code=NULL)
$redirect_uri = Url::toRoute(['controller/mailchimp-token'], 'https');
$token_uri = 'https://login.mailchimp.com/oauth2/token';
$params = [
'grant_type' => 'authorization_code',
'client_id' => Model::CLIENT_ID,
'client_secret' => Model::CLIENT_SECRET,
'redirect_uri' => urlencode($redirect_uri),
'code' => $code,
];
$user_agent = 'oauth2-draft-v10';
$headers = ['Accept: application/json'];
$res = Utility::post($token_uri, $params, $user_agent, $headers);
var_dump($res);
// Utility
public function post($url, $params, $user_agent = NULL, $headers = NULL)
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_ENCODING, "");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 20);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$post = http_build_query($params);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
isset($user_agent) ? curl_setopt($ch, CURLOPT_USERAGENT, $user_agent) : NULL;
isset($headers) ? curl_setopt($ch, CURLOPT_HTTPHEADER, $headers) : NULL;
$res = curl_exec($ch);
curl_close($ch);
return $res;
关于 SO 的答案对重定向 URI 匹配非常重要。但是有三个地方可以输入返回 uri:在注册应用程序时在 Mailchimp 中,在授权 url 和令牌 url 中。这三个都需要精确计算,还是只需要 auth 和 token URI?我尝试了各种组合都无济于事。我的问题可能有所不同,但这是我唯一不清楚的(我认为)。和我之前的许多人一样,我对这个很疯狂。
【问题讨论】:
你有没有使用 MailChimp 提供的默认php
库。
不,我试过了,但遇到了其他问题。我也试过 Yii 的认证经理。直接编码是最直接的,并且让我走得最远。
我在示例库中遇到了这个问题:***.com/questions/34645238/…
【参考方案1】:
此解决方案是由另一位开发人员提供给我的。
commmon/components/Mailchimp.php:
namespace common\components;
class Mailchimp extends \yii\authclient\OAuth2
public $clientId = 'client id';
public $clientSecret = 'client secret';
public $authUrl = 'https://login.mailchimp.com/oauth2/authorize';
public $tokenUrl = 'https://login.mailchimp.com/oauth2/token';
// min function needed to extend – just put the return to true as I don’t care the return value
public function initUserAttributes()
return true;
控制器:
public function actionMailchimpAuthorize()
$oauthClient = new \common\components\Mailchimp();
$oauthClient->setReturnUrl(Url::toRoute(['controller/mailchimp-complete'], 'https));
$url = $oauthClient->buildAuthUrl();
$response = Yii::$app->getResponse()->redirect($url);
return $this->render('mailchimpAuthorize');
public function actionMailchimpComplete()
$code = Yii::$app->getRequest()->get('code');
$oauthClient = new \common\components\Mailchimp();
$oauthClient->setReturnUrl(Url::toRoute(['controller/mailchimp-complete'], 'https));
$accessToken = $oauthClient->fetchAccessToken($code);
// Complete MC flow with request to metadata url
$headers = [
'User-Agent:oauth2-draft-v10',
'Host:login.mailchimp.com',
'Accept:application/json',
'Authorization:OAuth ' . $oauthClient->getAccessToken()->token
];
$url = 'https://login.mailchimp.com/oauth2/metadata';
$res = Utility::get($url, $headers);
$dc = json_decode($res)->dc; // retrieve datacenter
return $this->render('mailchimpComplete', ['accessToken' => $accessToken, 'data' => $oauthClient]);
// save token-datacenter to database for making api calls
查看文件mailchimpComplete.php:
echo($data->getAccessToken()->token);
在 Mailchimp 中注册应用时设置的返回 URI 与上面列出的相同:https://myhost.com/controller/mailchimp-complete
【讨论】:
以上是关于MailChimp OAuth2 访问令牌的主要内容,如果未能解决你的问题,请参考以下文章
无法在 node.js 中交换访问令牌的代码。 Mailchimp API