0

我的代码实际上与 Linkedin 和 Meetup API 完美配合,但不适用于 Eventbrite API,我绝对不明白为什么:

$params = array(
                        'grant_type' => 'authorization_code',
                        'client_id' => EVENTBRITE_CONSUMER_KEY,
                        'client_secret' => EVENTBRITE_CONSUMER_SECRET,
                    );

// Eventbrite API access token request
$url = 'https://www.eventbrite.com/oauth/token?' . http_build_query($params);

// Tell streams to make a POST request
$context = stream_context_create(array('http' => array('method' => 'POST')));

// Retrieve access token information
$response = file_get_contents($url, false, $context);

我确切地说,获取授权代码的 API 登录部分似乎工作得很好。

这是PHP错误:

警告:file_get_contents(https://www.eventbrite.com/oauth/token?grant_type=authorization_code&client_id=ZZ6PPQOMTKSXIHEKLR&client_secret=QQDDIS4RBZXI6ONO7QEYEUZ4JB2ABQQG6K3H7CBD6M5QWK5GSK&code=O63YZASRAYMOUHRMH5AH):未能打开流:HTTP请求失败!第 102 行 /var/www/include/actions.php 中的 HTTP/1.1 400 BAD REQUEST

如果有人有线索,请提前感谢:)


更新 :

我终于找到了问题所在(即使我不明白为什么):

file_get_contents 似乎不是访问 oauth 页面的好方法,我使用 curl 代替:

$request_url = 'https://www.eventbrite.com/oauth/token';

$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
curl_setopt($ch, CURLOPT_URL, $request_url);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$response = curl_exec($ch);
curl_close($ch);    

我希望它能帮助遇到同样问题的任何人;)

4

1 回答 1

2

只是为了让这个问题不会继续在自动电子邮件中显示为未回答,我将在此处从您的更新中添加您的答案——希望它已经亮了!

file_get_contents似乎不是访问 oauth 页面的好方法,我使用 curl 代替:

$request_url = 'https://www.eventbrite.com/oauth/token';

$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($params));
curl_setopt($ch, CURLOPT_URL, $request_url);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$response = curl_exec($ch);
curl_close($ch);

感谢您通过回答您自己的问题来轻松解决问题!;)

于 2013-10-22T16:30:10.020 回答