2015-10-20 39 views
1

我正在使用Mailchimp API 1.3 php包装器。问题是我的客户托管一个站点的服务器会缓存响应,它甚至不会进行api调用。确切的同一代码的工作,我和其他客户:使用fsockopen发布数据时发生PHP缓存问题

$api = new MCAPI($apiKey); 
$doubleOptin = false;   
$mergeVar = array(
'FNAME' => '', 
'LNAME' => '' 
);      
$api->listSubscribe($listId, $email, $mergeVar, 'html', $doubleOptin); 
print_r($api); 

方法listSubscribe()调用方法callServer这里我想的问题是:

$payload = "POST " . $this->apiUrl["path"] . "?" . $this->apiUrl["query"] . "&method=" . $method . " HTTP/1.0\r\n"; 
    $payload .= "Host: " . $host . "\r\n"; 
    $payload .= "User-Agent: MCAPI/" . $this->version ."\r\n"; 
    $payload .= "Content-type: application/x-www-form-urlencoded\r\n"; 
    $payload .= "Content-length: " . strlen($post_vars) . "\r\n"; 
    $payload .= "Connection: close \r\n\r\n"; 
    $payload .= $post_vars; 

    ob_start(); 
    if ($this->secure){ 
     $sock = fsockopen("ssl://".$host, 443, $errno, $errstr, 30); 
    } else { 
     $sock = fsockopen($host, 80, $errno, $errstr, 30); 
    }  
    if(!$sock) { 
     $this->errorMessage = "Could not connect (ERR $errno: $errstr)"; 
     $this->errorCode = "-99"; 
     ob_end_clean(); 
     return false; 
    } 

    $response = ""; 
    fwrite($sock, $payload); 
    stream_set_timeout($sock, $this->timeout); 
    $info = stream_get_meta_data($sock); 
    while ((!feof($sock)) && (!$info["timed_out"])) { 
     $response .= fread($sock, $this->chunkSize); 
     $info = stream_get_meta_data($sock); 
    } 
    var_dump($response); exit; 

没有任何人有任何想法,为什么的fsockopen和fwrite从未发送呼叫到Mailchimp?奇怪的是我实际上可以读取$ response,但它始终与缓存相同。

+0

这听起来像是你的托管服务提供商要采取的措施。缓存POST回复真的非常糟糕。 – TooMuchPete

回答

0

如果代码适用于您,并且有一些查询缓存,那么您可以尝试向请求添加时间戳。

"&time=".time() 

这样你总是有一个“新鲜”的请求。

+0

我之前补充说,它并没有解决问题,可能是因为它是POST而不是GET,因此url保持不变。 – JohnyFree

+0

将'time'放入URL中,即使使用POST也是如此。 – TooMuchPete