我确实尝试使用以下端点“https://forms.hubspot.com/uploads/form/v2/{portalId}/{formGuid}”将 curl 请求发送到 HUBSPOT。{portalId} 和 {formGuid} 已正确替换。
发送请求时,状态码 204 作为响应返回,但没有添加数据。
服务器上的代码库和我的本地主机上的代码库完全相同。它在我的本地主机上工作得很好,但在服务器上却不工作。
请任何人都可以帮助确定问题,因为无法找出可能的原因吗?有很多关于相同的问题。
提前致谢。
api调用函数。
public static function api($post_values)
{
self::getKeyValues();
//replace the values in this URL with your portal ID and your form GUID
$endpoint = 'https://forms.hubspot.com/uploads/form/v2/{portalId}/{formGuid}';
$endpoint = str_replace("{portalId}", self::$portalID, $endpoint);
$endpoint = str_replace("{formGuid}", self::$formID, $endpoint);
$ch = @curl_init();
@curl_setopt($ch, CURLOPT_POST, true);
@curl_setopt($ch, CURLOPT_POSTFIELDS, $post_values);
@curl_setopt($ch, CURLOPT_URL, $endpoint);
@curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
@curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
@curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
@curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = @curl_exec($ch); //Log the response from HubSpot as needed.
$status_code = @curl_getinfo($ch, CURLINFO_HTTP_CODE); //Log the response status code
@curl_close($ch);
return $status_code; //if 204 status code is printed that means for has been submitted successfully.
}