这是关于 微信登录不上去怎么办怎么办 的解答
微信登录不上去怎么办怎么办
1. 检查微信是否登录正常:检查登录账号和密码是否正确;检查网络是否畅通。
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html2. 如果登录账号和密码无误,请检查“设置-微信-安全-微信近期使用记录”,若出现异常的记录,则可能为账号被盗,建议及时修改密码,以保护帐号安全。
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html3.如果在更改登录密码后仍然无法登录,则可能是微信账号被冻结,在此情况下可以联系微信客服,提供相关账号信息以恢复账号使用权。
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html微信登录密码忘记了怎么办
1.第一步:打开微信客户端,点击右上角的“我”按钮;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html2.第二步:点击“设置”,在设置界面中,点击“帐号与安全”;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html3.第三步:点击忘记密码,选择用手机号或者邮箱重置;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html4.第四步:用你微信绑定的手机号或者注册的邮箱,进行重置密码;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html5.第五步:按照重置密码的步骤,操作完成即可重设新的登录密码。
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html微信登录两个账号怎么弄
1、打开手机微信,点击“我”,在右上方点击“设置”;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html2、在设置页面,点击“帐号与安全”,选择“多帐号管理”,这时,你就可以添加新的微信号;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html3、点击“添加帐号”,输入新的微信号,通过手机短信快速确认,即可成功登陆新的微信号。
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html微信登录的赚钱软件
1、抖音
2、快手
3、淘宝
4、网易云音乐
5、熊猫直播
6、头条抢红包
7、一起挖
8、苹果手机应用宝
9、街机捕鱼机
10、微赚网
微信登录
/*
https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code
*/
const request= require("request");
const appId="wx0390dec77cc07ef2";
const appSecret="fd8fd09fd7eeffe5a6cd9f3d5f6bd1cb";
//这里可以更换从别的地方拿,js登录过来以后拿到用户信息,发送出去一个code
const jsCode="0315ncdx0AxpzH1Znmdx01Qcdx0ncdx02";
const url=`https://api.weixin.qq.com/sns/jscode2session?appid=${appId}&secret=${appSecret}&js_code=${jsCode}&grant_type=authorization_code`
//让我们编写一个函数
const getInfor=()=>{
request(url , (err , res , body) =>{
console.log(body);
})
}
getInfor();
}
//测试
// Test();
getWx(jsCode){
const request= require("request");
const appId="wx0390dec77cc07ef2";
const appSecret="fd8fd09fd7eeffe5a6cd9f3d5f6bd1cb";
//这里可以更换从别的地方拿,js登录过来以后拿到用户信息,发送出去一个code
// const jsCode="0315ncdx0AxpzH1Znmdx01Qcdx0ncdx02";
const url=`https://api.weixin.qq.com/sns/jscode2session?appid=${appId}&secret=${appSecret}&js_code=${jsCode}&grant_type=authorization_code`
文章源自乘风RC网 - https://www.cfrc.net/answer/53.htmlvar that=this;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html //让我们编写一个函数
const getInfor=()=>{
request(url , (err , res , body) =>{
文章源自乘风RC网 - https://www.cfrc.net/answer/53.htmlconsole.log(body);
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html //这里面的openID可以做一个比对
var data=that.covertData(body);
if(data.openid){
//这里存入openID就可以了,也就是后台的userID ,我们可以把它存储到数据库,传回去就可以做登录
that.setData({
openID:data.openid
});
}
})
}
getInfor();
},
covertData(data){
var obj;
try {
obj = JSON.parse(data);
} catch (error) {
console.log(error);
}
return obj;
},
bindGetUserInfo(e){
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html //获取用户信息,信息是加密串
this.setData({
userInfo: e.detail
})
//获取code
const JAVA_CODE_URL=this.getCode(this.data.userInfor.encryptedData,this.data.userInfor.iv);
// this.getWx('rgtyrmyuiiouwsdfdgsre54f');
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html// console.log(JAVA_CODE_URL);
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html // 获得openID
this.getWx(JAVA_CODE_URL);
},
getCode(encryptedData,iv){
//这里面就是需要用到后台的接口
// // 接口只是是否接受了,来给前端一个会的
// https://127.0.0.1:3001/api/code
let self=this;
wx.login({
//成功就会送出去一个code,这个code我们就可以把它发送给后台
success:(res)=>{
console.log(res);
wx.request({
文章源自乘风RC网 - https://www.cfrc.net/answer/53.htmlurl:"https://www.code2000.top/api/code",
文章源自乘风RC网 - https://www.cfrc.net/answer/53.htmldata: {code: res.code, encryptedData: this.data.userInfor.encryptedData, iv: this.data.userInfor.iv},
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html header:{
'ContentType':'Application/json'
},
method:"GET",
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html success:(res)=>{
//success
console.log(res);
self.setData({
code2Session:res.data
});
},
fail(error){
console.log("失败",error);
}
});
文章源自乘风RC网 - https://www.cfrc.net/answer/53.htmlreturn res.code;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html },
//失败就给一个提示
fail(error){
console.log("失败",error)
}
})
}
})
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html微信登录指纹锁怎么设置
1.首先,打开微信客户端,然后点击右上角的“我”,进入个人中心界面;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html2.然后,点击右上角的设置按钮,进入设置界面;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html3.在设置界面中,找到“安全中心”,点击进入安全中心;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html4.在安全中心界面中,找到“指纹锁”,点击进入指纹锁设置界面;
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html5.在指纹锁设置界面中,点击“开启指纹锁”,按照提示对你的指纹进行设置,完成之后,指纹锁即可设置成功。
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html
文章源自乘风RC网 - https://www.cfrc.net/answer/53.html