我是 PHP 世界的大部分新手。我目前正在尝试将 Silverpop 的 API 与我们页面上的表单进行交互。以下是我到目前为止的代码。
问题是,虽然身份验证工作得非常完美,但每当我尝试发布 API 所需的 XML 时,总是会返回一个错误消息:“会话已过期或无效”。我将在代码中标记出错误发生的区域。
我花了最后半天的时间进行研究,但我无法弄清楚我做错了什么或可能遗漏了什么。我被模糊地告知它与浏览器中的输出有关,因为我在一个空白(无 html)php 文件中测试它之前的 PHP 标头函数(如 cURL)。
<?php
// Vars
$firstname = 'a';
$lastname = 'a';
$email = 'a@b.com';
// cURL
function curl($url,$header,$postbody) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPHEADER, array($header));
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postbody);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 300);
$ret = curl_exec($ch);
curl_close($ch);
return $ret;
}
///# SILVERPOP API #///
// SILVERPOP API URLs
// get_token uses oauth to retrieve an access token (works just fine)
$get_token = 'https://api1.silverpop.com/oauth/token?*inforemoved*';
$xmlapi = 'https://api1.silverpop.com/XMLAPI?Authorization=';
// XML STRINGS
$xml_post = '<Envelope><Body><AddRecipient><LIST_ID>database#</LIST_ID><CREATED_FROM>1</CREATED_FROM><SEND_AUTOREPLY>true</SEND_AUTOREPLY><UPDATE_IF_FOUND>true</UPDATE_IF_FOUND><COLUMN><NAME>Name</NAME><VALUE>'.$firstname.'</VALUE></COLUMN><COLUMN><NAME>LastName</NAME><VALUE>'.$lastname.'</VALUE></COLUMN><COLUMN><NAME>Email</NAME><VALUE>'.$email.'</VALUE></COLUMN><COLUMN><NAME>Lead Source</NAME><VALUE>Lead_SqueezePage_5Questions</VALUE></COLUMN></AddRecipient></Body></Envelope>';
$xml_done = '<Envelope><Body><Logout/></Body></Envelope>';
// HEADER VALUES
$h_access = 'Content-Type:x-www-form-urlencoded';
$h_api = 'Content-Type:text/xml;charset=UTF-8';
// Get API Access token
$auth = curl($get_token,$h_access,'');
// Pull access_token from the return string
$auth = explode('"', $auth);
for ($i=0; $i < count($auth); $i++) {
if ( $auth[$i] == "access_token" ) {
$access_token = $auth[$i + 2];
break;
}
}
//Append token to URL unless auth failed, then die
if ( $access_token != NULL) {
$xmlapi .= $access_token;
} else {
// Logout API session - SESSION ERROR HERE
$logout = curl($xmlapi,$h_api,$xml_done);
//echo 'Authentication Failed!';
die;
}
// Send Customer Data - SESSION ERROR HERE
$inject = curl($xmlapi,$h_api,$xml_post);
// Logout API Session - SESSION ERROR HERE
$logout = curl($xmlapi,$h_api,$xml_done);
///# END SILVERPOP API #///
?>