// 获取登录用户信息操作
function authUserInfo() {
var s = auths[0]; //0是微信,1是QQ,2是微博
if (!s.authResult) {
alert("未授权登录!");
} else {
s.getUserInfo(function(e) {
mui.getJSON('http://www.pinchao.cc/api.php/User/login', {
nickname: s.userInfo.nickname,
sex: s.userInfo.sex,
province: s.userInfo.province,
city: s.userInfo.city,
country: s.userInfo.country,
headimgurl: s.userInfo.headimgurl,
unionid: s.userInfo.unionid,
code: hex_md5(s.userInfo.unionid),
type: 'weixin'
}, function(data) {
//获得服务器响应
void plus.storage.setItem('user_id', data.user_id);
void plus.storage.setItem('access_token', data.access_token);
var foo = plus.storage.getItem('user_id');
alert(foo);
});
//alert("获取用户信息成功:" + JSON.stringify(s.userInfo));
}, function(e) {
alert("获取用户信息失败:" + e.message + " - " + e.code);
});
}
}
极限雪豹
- 发布:2016-02-24 11:20
- 更新:2016-02-24 11:20
- 阅读:1462
0 个回复