typecho插件編寫教程6 - 調用接口

此文本來發表於個人博客 老高的技術博客 ,歡迎和老高交流!php


此篇咱們開始調用接口,咱們在插件類中新定義一個方法,起名爲send_post,在方法中咱們經過系統配置獲取接口調用地址。html

百度給的例子中使用了php的CURL,更高級的使用方法能夠學習 PHP_cURL初始化和執行方法json

下面咱們結合一下百度站長提供的代碼。api

php/**
     * 發送數據
     * @param $url 準備發送的url
     * @param $options 系統配置
     */
    public static function send_post($url, $options){
        //獲取API
        $api = $options->plugin('BaiduSubmitTest')->api;

        //準備數據
        if( is_array($url) ){
            $urls = $url;
        }else{
            $urls = array($url);
        }

        $ch = curl_init();
        $options =  array(
            CURLOPT_URL => $api,
            CURLOPT_POST => true,
            CURLOPT_RETURNTRANSFER => true,
            CURLOPT_POSTFIELDS => implode("\n", $urls),
            CURLOPT_HTTPHEADER => array('Content-Type: text/plain'),
        );
        curl_setopt_array($ch, $options);
        $result = curl_exec($ch);

        //記錄日誌
        file_put_contents('/tmp/send_log', date('H:i:s') . $result . "\n");
    }

因爲咱們尚未創建日誌系統,因此咱們將日誌先寫入文件,先看效果吧!curl

返回值:typecho

json{"remain":48,"success":1}

Good!看來沒有什麼問題!不過爲了保險起見,我仍是用typecho自帶的http類重寫了此方法。post

phppublic static function send_post($url, $options){
        //獲取API
        $api = $options->plugin('BaiduSubmitTest')->api;

        //準備數據
        if( is_array($url) ){
            $urls = $url;
        }else{
            $urls = array($url);
        }

        //爲了保證成功調用,老高先作了判斷
        if (false == Typecho_Http_Client::get()) {
            throw new Typecho_Plugin_Exception(_t('對不起, 您的主機不支持 php-curl 擴展並且沒有打開 allow_url_fopen 功能, 沒法正常使用此功能'));
        }

        //發送請求
        $http = Typecho_Http_Client::get();
        $http->setData(implode("\n", $urls));
        $http->setHeader('Content-Type','text/plain');
        $result = $http->send($api);

        //記錄日誌
        file_put_contents('/tmp/send_log', date('H:i:s') . $result . "\n");
    }
}

如今咱們的插件基本可以運行了,可是在結構上還能夠進一步優化!學習

相關文章
相關標籤/搜索