我是 REST 新手,負責使用 V3 API 取回 SurveyMonkey 調查資料。 我正在使用PHP。 我的代码如下:
$fields = array(
'title'=>'New Admission Survey',
'object_ids' => array($surveyID));
$fieldsString = json_encode($fields);
$curl = curl_init();
$requestHeaders = array(
"Authorization" => 'bearer abc123',
"Content-Type" => 'application/json',
'Content-Length: ' . strlen($fieldsString));
$baseUrl = 'https://api.surveymonkey.net/v3';
$endpoint = '/surveys/';
curl_setopt($curl, CURLOPT_URL, $baseUrl . $endpoint);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, $requestHeaders);
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($curl, CURLOPT_POSTFIELDS, $fieldsString);
$curl_response = curl_exec($curl);
if($curl_response == false){
echo('Well, crap');
$info = curl_getinfo($curl);
echo('<pre>');print_r($info);echo('</pre>');
echo('<pre>');print_r(curl_error($curl));echo('</pre>');}
else {
echo('Test: ' . $curl_response);}
curl_close($curl);
我收到以下错误:
error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure
我已经验证了我正在使用的身份验证令牌是我注册应用程序时颁发给我的令牌(今天完成(。
我错过了什么吗? 大多數問題和答案都涉及 SurveyMonkey API 的 V2。 我正在使用 V3。
感谢您的帮助!
我不确定这是否有助于解决您遇到的特定错误,但是您是否尝试过使用此API包装器? https://github.com/ghassani/surveymonkey-v3-api-php
这个 API 包装器大大简化了我的任务:
<?php
// Init the client.
$client = SplicedSurveyMonkeyClient(MY_CLIENT_ID, MY_ACCESS_TOKEN);
// Get a specific survey.
$survey = $client->getSurvey(MY_SURVEY_ID);
// Get all responses for this survey.
/** @var SplicedSurveyMonkeyResponse $responses */
$responses = $client->getSurveyResponses(MY_SURVEY_ID);
// Get a specific response.
/** @var SplicedSurveyMonkeyResponse $response */
$response = $client->getSurveyResponse(MY_SURVEY_ID, RESPONSE_ID, TRUE);
/* etc... */