php 用户头像 小程序,微信小程序获取用户头像+昵称+openid,小程序登录!小程序发送模板消息...

 获取头像昵称 

{{userInfo.nickName}}

{{motto}}

//获取应用实例

const app = getApp()

Page({

data: {

motto: 'Hello World',

userInfo: {},

hasUserInfo: false,

canIUse: wx.canIUse('button.open-type.getUserInfo')

},

onLoad: function () {

if (app.globalData.userInfo) {

this.setData({

userInfo: app.globalData.userInfo,

hasUserInfo: true

})

} else if (this.data.canIUse){

// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回

// 所以此处加入 callback 以防止这种情况

app.userInfoReadyCallback = res => {

this.setData({

userInfo: res.userInfo,

hasUserInfo: true

})

}

} else {

// 在没有 open-type=getUserInfo 版本的兼容处理

wx.getUserInfo({

success: res => {

app.globalData.userInfo = res.userInfo

this.setData({

userInfo: res.userInfo,

hasUserInfo: true

})

}

})

}

},

getUserInfo: function(e) {

console.log(e)

app.globalData.userInfo = e.detail.userInfo

//获取openid

wx.login({

success: function (res) {

console.log(res.code)

//发送请求获取openid

wx.request({

url: '你的域名/openid.php?code=code', //接口地址

data: { code: res.code },

header: {

'content-type': 'application/json' //默认值

},

success: function (res) {

//返回openid

console.log(res.data.openid)

//向数据库注册用户,验证用户

var that = this;

wx.request({

url: '你的域名/server.php?nickname=' + e.detail.userInfo.nickName + '&avatarUrl=' + e.detail.userInfo.avatarUrl + '&openid=' + res.data.openid,

data: {

},

header: {

'content-type': 'application/json'

},

success: function (res) {

//打印用户信息

console.log(res.data)

}

})

}

})

}

})

this.setData({

userInfo: e.detail.userInfo,

hasUserInfo: true,

})

}

})<?php

//声明CODE,获取小程序传过来的CODE

$code = $_GET["code"];

//配置appid

$appid = "你的小程序APPID";

//配置appscret

$secret = "你的小程序APPSRCRET";

//api接口

$api = "https://api.weixin.qq.com/sns/jscode2session?appid={$appid}&secret={$secret}&js_code={$code}&grant_type=authorization_code";

//获取GET请求

function httpGet($url){

$curl = curl_init();

curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

curl_setopt($curl, CURLOPT_TIMEOUT, 500);

curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true);

curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, true);

curl_setopt($curl, CURLOPT_URL, $url);

$res = curl_exec($curl);

curl_close($curl);

return $res;

}

//发送

$str = httpGet($api);

echo $str;

?><?php

header("Content-type:text/html;charset=utf8");

$nickname = $_GET["nickname"];

$avatarUrl = $_GET["avatarUrl"];

$openid = $_GET["openid"];

$con = mysql_connect("数据库地址","数据库账号","数据库密码");

mysql_select_db("数据库名", $con);

mysql_query("INSERT INTO 表名 (nickname, avatarUrl, openid) VALUES ('$nickname', '$avatarUrl', '$openid')");

echo "注册成功!";

mysql_close($con);

?>

微信模板消息

推送

Page({

data: {

},

submit: function (e) {

var openid = e.detail.value.openid;

var access = e.detail.value.token;

var template = e.detail.value.template;

var keyword1 = e.detail.value.keyword1;

var keyword2 = e.detail.value.keyword2;

var keyword3 = e.detail.value.keyword3;

var keyword4 = e.detail.value.keyword4;

var keyword5 = e.detail.value.keyword5;

var that = this;

wx.request({

url: '域名/muban.php?openid=' + e.detail.value.openid + '&token=' + e.detail.value.token + '&template=' + e.detail.value.template + '&formid=' + e.detail.formId + '&keyword1=' + e.detail.value.keyword1 + '&keyword2=' + e.detail.value.keyword2 + '&keyword3=' + e.detail.value.keyword3 + '&keyword4=' + e.detail.value.keyword4 + '&keyword5=' + e.detail.value.keyword5, //接口地址,我学习就用get,建议用post

data: {

open_id: openid,

tok_en: access,

temp_late: template,

form_id: e.detail.formId,

keyword_1: keyword1,

keyword_2: keyword2,

keyword_3: keyword3,

keyword_4: keyword4,

keyword_5: keyword5

},

success: function (res) {

// console.log(e.detail.formId);

// console.log(res.data);

}

})

}

})//后端

//GET参数

$access_token=$_GET['token'];

$openid=$_GET['openid'];

$templateid=$_GET['template'];

$formid=$_GET['formid'];

$keyword1=$_GET['keyword1'];

$keyword2=$_GET['keyword2'];

$keyword3=$_GET['keyword3'];

$keyword4=$_GET['keyword4'];

$keyword5=$_GET['keyword5'];

echo $keywordd1;

//此处开始处理数据

$dataa=array(

"keyword1"=>array(

"value"=>$keyword1,

"color"=>"#9b9b9b"),

"keyword2"=>array(

"value"=>$keyword2,

"color"=>"#9b9b9b"),

"keyword3"=>array(

"value"=>$keyword3,

"color"=>"#9b9b9b"),

"keyword4"=>array(

"value"=>$keyword4,

"color"=>"#9b9b9b"),

"keyword5"=>array(

"value"=>$keyword5,

"color"=>"#9b9b9b")

);

$data=array();

$data['touser']=$openid;

$data['template_id']=$templateid;

$data['form_id']=$formid;

$data['data']=$dataa;

$url = 'https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token='.$access_token;

$type="json";

if($type=='json'){//json $_POST=json_decode(file_get_contents('php://input'), TRUE);

$headers = array("Content-type: application/json;charset=UTF-8","Accept: application/json","Cache-Control: no-cache", "Pragma: no-cache");

$data=json_encode($data);

}

$curl = curl_init();

curl_setopt($curl, CURLOPT_URL, $url);

curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求

curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);

curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);

if (!empty($data)){

curl_setopt($curl, CURLOPT_POST, 1);

curl_setopt($curl, CURLOPT_POSTFIELDS,$data);

}

curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

curl_setopt($curl, CURLOPT_HTTPHEADER, $headers );

$output = curl_exec($curl);

if (curl_errno($curl)) {

echo 'Errno'.curl_error($curl);//捕抓异常

}

curl_close($curl);

echo $output;

?>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值