0

我正在尝试通过提交表单在 hubspot 中创建潜在客户。以下是我编写的代码。

<?php
    function send_lead() {
    $hubspotutk = $_COOKIE['hubspotutk'];
    $ip_addr = $_SERVER['REMOTE_ADDR'];
    $hs_context = array(
        "hutk" => $hubstoputk,
        'ipAddress' => $ip_addr,
         'pageName' => 'Test Form'
       );

    $hs_context_json = json_encode($hs_context);
    //Need to populate these varilables with values from the form.
    $str_post ="email=" . urlencode($_POST["email"])
                    . "&hs_context=" . urlencode($hs_context_json);  //Leave this one be :)'

    //replace the values in this URL with your portal ID and your form GUID
    $endpoint = 'https://forms.hubspot.com/uploads/form/v2/portal-id/form-id';
    $ch = @curl_init();
    @curl_setopt($ch, CURLOPT_POST, true);
    @curl_setopt($ch, CURLOPT_POSTFIELDS, $str_post);
    @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);
    $response = @curl_exec($ch);  //Log the response from HubSpot as needed.
    @curl_close($ch);
    echo $response;

}
?>

我得到一个空洞的回应。谁能告诉我我的代码有什么问题?

4

2 回答 2

0

当表单提交成功时,会收到来自 Hubspot 的 204 响应。204 是没有内容的响应。

Hubspot 表单 api 参考可以在这里找到:http: //developers.hubspot.com/docs/methods/forms/submit_form

于 2015-03-19T21:08:40.600 回答
0

变量名拼写错误。$hubspotutk$hs_context数组中使用。

于 2016-02-16T08:47:56.067 回答