• 大小: 5KB
    文件类型: .php
    金币: 1
    下载: 0 次
    发布日期: 2021-01-10
  • 标签: 微信  php  

资源简介

PHP使用微信接口发送消息模板,该源码为一个完整的示例,希望对大家有用,包括了请求,获取,比较简单

资源截图

代码片段和文件信息

header(“Content-type: text/html; charset=utf-8“);
if(!isset($_GET[‘code‘]))
{
$APPID=‘公众号在微信的appid‘;
$REDIRECT_URI=‘http://‘.$_SERVER[‘HTTP_HOST‘].$_SERVER[‘REQUEST_URI‘];//一般跳回原页面就可以
$scope=‘snsapi_base‘;
$url=‘https://open.weixin.qq.com/connect/oauth2/authorize?appid=‘.$APPID.‘&redirect_uri=‘.urlencode($REDIRECT_URI).‘&response_type=code&scope=‘.$scope.‘&state=wx‘.‘#wechat_redirect‘;
header(“Location:“.$url);exit;
}
else
{
$code = $_GET[‘code‘];//获取code
$weixin =  file_get_contents(“https://api.weixin.qq.com/sns/oauth2/access_token?appid=这里是你的APPID&secret=这里是你的SECRET&code=“.$code.“&grant_type=authorization_code“);//通过code换取网页授权access_token
$jsondecode = json_decode($weixintrue); //对JSON格式的字符串进行编码
//$array = get_object_vars($jsondecode);//转换成数组
$zhiyeguwen

评论

共有 条评论