php版微信公眾平台賬號自定義選單類

2022-03-16 08:57:27 字數 1662 閱讀 5531

申請自定義選單

服務號可以申請自定義選單;使用qq登入的***,可以公升級為郵箱登入;使用郵箱登入的***,可以修改登入郵箱;**訊息可以同步到騰訊微博。

微信公眾平台賬號api程式

**如下

複製**

<?php

//define your token

define("token", "chenxiang");//改成自己的token

define('app_id', '');//改成自己的appid

define('app_secret', '');//改成自己的appsecret

$wechatobj = new wechatcallbackapitest(app_id,app_secret);

$wechatobj->run();

class wechatcallbackapitest

public function valid() }

/*** 執行程式

* @param string $value [description]

*/ public function run()

public function responsemsg()

elseif ($msgevent=='click')

} }else

}

/*** 獲取access_token

*/

private function get_access_token()

else

}

/*** 建立選單

* @param $access_token 已獲取的access_token

*/ public function createmenu($access_token)

/*** 刪除選單

* @param $access_token 已獲取的access_token

*/ private function delmenu($access_token)

else

}/**

*@param type: text 文字型別, news **型別

*@param value_arr array(內容),array(id)

*@param o_arr array(array(標題,介紹,,超連結),...小於10條),array(條數,id)

*/ private function make_xml($type,$value_arr,$o_arr=array(0))]]>

tousername}]]>

";//***************==type content**********==

switch($type)";

break;

case "news" :

$con.="

";foreach($value_arr as $id=>$v)

$con.="

"; break;

} //end switch

//***************==end return**********==

$con.="";

return $con;

}

private function checksignature()

else }}

PHP微信公眾平台自定義選單

請求說明 http請求方式 get 現在你的token已經獲取成功了,下來就是相關的 實現了。public function createmenu ch curl init curl setopt ch,curlopt url,curl setopt ch,curlopt customrequest...

微信公眾平台自定義選單

介面呼叫請求說明 http請求方式 get引數說明 引數是否必須 說明grant type 是獲取access token填寫client credential 是第三方使用者唯一憑證 secret 是返回說明 引數 說明access token 獲取到的憑證 expires in 憑證有效時間,單...

微信公眾平台 自定義選單

服務號和通過認證的訂閱號可以申請自定義選單。自定義選單介面可實現click view兩種型別的按鈕。1 建立選單 const createmenuurl function createmenus accesstoken string tjsonobject var url string j tjso...