手机
当前位置:查字典教程网 >编程开发 >php教程 >php版微信自动获取收货地址api用法示例
php版微信自动获取收货地址api用法示例
摘要:本文实例讲述了php版微信自动获取收货地址api用法。分享给大家供大家参考,具体如下:微信公众平台现在是越来越强大了,我们可以通过各种api...

本文实例讲述了php版微信自动获取收货地址api用法。分享给大家供大家参考,具体如下:

微信公众平台现在是越来越强大了,我们可以通过各种api接口来与平台对接获取对应的数据了,下面来看一个由php实现的微信自动获取收货地址api程序,具体如下.

关于接口的说明我就不介绍了,在官方可以看到下面只看处理程序.

public function get_address_api() { $APPID=C('APPID'); $SCRETID=C('SCRETID'); if (!isset($_GET['code'])) { $backurl = $this->get_url(); $url = "https://open.weixin.qq.com/connect/oauth2/authorize"&redirect_uri=".urlencode($backurl)."&response_type=code&scope=jsapi_address&state=123#wechat_redirect"; // snsapi_userinfo Header("Location: $url"); exit; } else { $code = $_GET['code']; $url = "https://api.weixin.qq.com/sns/oauth2/access_token"&secret=".$SCRETID."&code=".$code."&grant_type=authorization_code"; $re = file_get_contents($url); $rearr = json_decode($re,true); $backurl = $this->get_url(); $openid = $rearr['openid']; $unionid = $rearr['unionid']; $asstoken = $rearr['access_token']; S('jsapi_address_token'.$openid,$asstoken,7200); $data['appid']=$APPID; $data['url']=$backurl; $data['timestamp']=time(); $data['timestamp']= (string)($data['timestamp']); $data['noncestr']=$this->getRandStr(10); $data['accesstoken']=$asstoken; foreach ($data as $k => $v) { $Parameters[$k] = $v; } //签名步骤一:按字典序排序参数 ksort($Parameters); $String = $this->formatBizQueryParaMap($Parameters, false); $data['addrsign']=SHA1($String); $this->assign('data',$data); } $this->siteDisplay('address_api'); }

希望本文所述对大家PHP程序设计有所帮助。

【php版微信自动获取收货地址api用法示例】相关文章:

php获取twitter最新消息的方法

php curl 获取https请求的2种方法

php实现根据IP地址获取其所在省市的方法

php中smarty变量修饰用法实例分析

一个简单的自动发送邮件系统(二)

php根据表结构自动生成类属性

php实现每天自动变换随机问候语的方法

php简单实现屏蔽指定ip段用户的访问

php获取网页上所有链接的方法

php自定义hash函数实例

精品推荐
分类导航