0

我在早期使用unbounce api,我想通过输入页码获取与页面相关的所有线索记录,但我无法获取任何记录,请帮助我使用页码获取线索。我不知道如何开始。下面是我的代码,我开始使用此代码来获取潜在客户。

unbounce_data.php


    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
    </head>
    <body>
        <form method="POST" action="get_unbounce_data.php">
        <input type="text" name="page" value="" /> <br>
        
        <input type="submit" class="btn btn-primary" name="submit"/> 
        </form>
        
    </body>
    </html>

get_unbounce_data.php


    <?php
    
    if(isset($_POST['submit'])){
        $page = $_POST['page'];
        
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, "https://app.unbounce.com/1464463/pages/.$page./leads");
        curl_setopt($ch, CURLOPT_HEADER, 0);
        
        // grab URL and pass it to the browser
        $response = curl_exec($ch);
        print_r($response);
        // close cURL resource, and free up system resources
        curl_close($ch);
    }
    
    ?>

我正在使用 html 中的文本字段输入页码,我希望在提交该页面后,与该页面相关的所有潜在客户都打印在 php 文件中。

4

0 回答 0