API:顯示費率表

    版本為 15:05, 15 Nov 2024

    到這個版本。

    返回到 版本存檔.

    查閱目前版本

    需要的檔案

    • webservice/display_ratecard.php
    • common/lib/*

    開發說明

    sample_display_ratecard.php

    <?php
    /*
       * @return string
       * @param string $url
       * @desc Return string content from a remote file
    */
    
    function open_url($url)
    {
        $ch = curl_init();
    
        curl_setopt ($ch, CURLOPT_URL, $url);
        curl_setopt ($ch, CURLOPT_HEADER, 0);
    
        ob_start();
    
        curl_exec ($ch);
        curl_close ($ch);
        $string = ob_get_contents();
    
        ob_end_clean();
    
        return $string;
    }
    
    
    
    $private_key = "Ae87v56zzl34v";
    $private_key_md5 = md5($private_key);
    
    $api_url = "http://localhost/a2b_api/display_ratecard.php?" .
                            "key=$private_key_md5" .
                            "&page_url=http://localhost/a2b_api/sample_display_ratecard.php" .
                            "&field_to_display=t1.destination,t1.dialprefix,t1.rateinitial" .
                            "&column_name=Destination,Prefix,Rate/Min" .
                            "&field_type=,,money" .
                            "&fullhtmlpage=1&filter=countryname,prefix".
                            "&".$_SERVER['QUERY_STRING'];
    
    
    // ----------------- USAGE -------------------------
    
    #usage:
    $content = open_url ($api_url);
    print ($content);
    
    ?>
    

    Tips:

    • key: api_security_key
    • tariffgroupid: Call Plan ID
    • ratecardid: Rate Card ID (必須同時有 tariffgroupid)
    • css_url:
    • nb_display_lines: 每頁顯示資料筆數
    • filter:
      • countryname 顯示國家選擇
      • prefix 顯示號碼搜尋
    • field_to_display: 要顯示的來資料庫欄位 (t1.destination,t1.dialprefix,t1.rateinitial)
    • field_type: 資料欄位的屬性,money or date (,,money)
    • column_name: 欄位名稱 (Destination, Dialprefix, Rate/Min)
    • browse_letter: 是否顯示 A-Z 字母搜尋 (yes or no)
    • prefix_select: 是否顯示國碼搜尋
    • currency_select: 預設幣別顯示(USD or EUR etc...; 若不想顯示可以輸入 0)
    • page_url: PHP查詢網頁的URL,就是放這個程式的網頁。
    • merge_form:
    • fullhtmlpage:
    • resulttitle:
    • lcr:
    Powered by MindTouch Core