微信利用PHP创建自定义菜单的方法

 2025-01-16  阅读 422  评论 8  点赞 458

摘要:在使用通用接口前,你需要做以下两步工作: 1.拥有一个微信公众账号,并获取到appid和appsecret(在公众平台申请内测资格,审核通过后可获得) 2.通过获取凭证接口获取到access_token 注意: access_token是第三方访问api资源的票据; access_token对应于公众号是全局唯一的票

在使用通用接口前,你需要做以下两步工作:
1.拥有一个微信公众账号,并获取到appid和appsecret(在公众平台申请内测资格,审核通过后可获得)
2.通过获取凭证接口获取到access_token
注意:
access_token是第三方访问api资源的票据;
access_token对应于公众号是全局唯一的票据,重复获取将导致上次获取的access_token失效。

访问下面这个地址(注意替换你的appid和secret):

微信利用PHP创建自定义菜单的方法

https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=appid&secret=appsecret

然后在浏览器能看到一下返回信息:
{"access_token":"这里就是你的access_token","expires_in":7200}

创建自定义菜单:


<?php
header("content-type: text/html; charset=utf-8");
define("access_token", "这里填入你上面获取到的access_token");


//创建菜单
function createmenu($data){
$ch = curl_init();
curl_setopt($ch, curlopt_url, "https://api.weixin.qq.com/cgi-bin/menu/create?access_token=".access_token);
curl_setopt($ch, curlopt_customrequest, "post");
curl_setopt($ch, curlopt_ssl_verifypeer, false);
curl_setopt($ch, curlopt_ssl_verifyhost, false);
curl_setopt($ch, curlopt_useragent, 'mozilla/5.0 (compatible; msie 5.01; windows nt 5.0)');
curl_setopt($ch, curlopt_followlocation, 1);
curl_setopt($ch, curlopt_autoreferer, 1);
curl_setopt($ch, curlopt_postfields, $data);
curl_setopt($ch, curlopt_returntransfer, true);
$tmpinfo = curl_exec($ch);
if (curl_errno($ch)) {
 return curl_error($ch);
}

curl_close($ch);
return $tmpinfo;

}

//获取菜单
function getmenu(){
return file_get_contents("https://api.weixin.qq.com/cgi-bin/menu/get?access_token=".access_token);
}

//删除菜单
function deletemenu(){
return file_get_contents("https://api.weixin.qq.com/cgi-bin/menu/delete?access_token=".access_token);
}





$data = '{
   "button":[
   {
     "type":"click",
     "name":"首页",
     "key":"home"
   },
   {
      "type":"click",
      "name":"简介",
      "key":"introduct"
   },
   {
      "name":"菜单",
      "sub_button":[
      {
        "type":"click",
        "name":"hello word",
        "key":"v1001_hello_world"
      },
      {
        "type":"click",
        "name":"赞一下我们",
        "key":"v1001_good"
      }]
    }]
}';




echo createmenu($data);
//echo getmenu();
//echo deletemenu();

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。


标签:phpphp教程

评论列表:

显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0278秒, 内存占用1.94 MB, 访问数据库32次

冀ICP备19034377号