微信跳轉wap外部瀏覽器介面如何實現

BQHZSJ發表於2019-09-24

微信跳轉外部瀏覽器的作用是什麼?

一般的連結在微信內開啟,只能在微信的瀏覽器裡面瀏覽。但是微信跳轉wap 外部瀏覽器介面,可以將使用者指定的連結在微信內開啟,然後喚起微信之外手機瀏覽器內開啟網頁,脫離微信的限制。

 

如何操作?

1,   獲取介面。

2,   填寫需要跳轉到微信外瀏覽器的網址。

3,   得到地址之後,就可以分享推廣了。

 

以上均是個人的一些經驗分享,不足之處歡迎指正,有興趣的朋友也可留言交流探討!


  下面分享一段程式碼供大家參考:

       php

$url = " ;

$params = array(

'appkey' => 'appkey' , // 您申請的 APPKEY

'path' => '/home' , // 需要切換的路由 ( 非必傳 )

);

 

$paramstring = http_build_query($params);

$content = Curl($url, $paramstring);

$result = json_decode($content, true);

if ($result) {

    var_dump($result);

} else {

    // 請求異常

}

 

/**

    * 請求介面返回內容

    * @param    string $url [ 請求的 URL 地址 ]

    * @param    string $params [ 請求的引數 ]

    * @param    int $ipost [ 是否採用 POST 形式 ]

    * @return    string

*/

function Curl ($url, $params = false, $ispost = 0 )

{

    $httpInfo = array();

    $ch = curl_init();

 

    curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);

    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60 );

    curl_setopt($ch, CURLOPT_TIMEOUT, 60 );

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

    if ($ispost) {

        curl_setopt($ch, CURLOPT_POST, true);

        curl_setopt($ch, CURLOPT_POSTFIELDS, $params);

        curl_setopt($ch, CURLOPT_URL, $url);

    } else {

        if ($params) {

            curl_setopt($ch, CURLOPT_URL, $url. '?' .$params);

        } else {

            curl_setopt($ch, CURLOPT_URL, $url);

        }

    }

 

    $response = curl_exec($ch);

        if ($response === FALSE) {

        //echo "cURL Error: " . curl_error($ch);

        return false;

    }

 

    $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);

    $httpInfo = array_merge($httpInfo, curl_getinfo($ch));

    curl_close($ch);

    return $response;

}

 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69947530/viewspace-2658043/,如需轉載,請註明出處,否則將追究法律責任。

相關文章