PHP curl 请求 - 提交 Hubspot 表单响应 204Hubspot 上没有反映数据

问题描述

我确实尝试使用以下端点“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.
    }

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)