这是关于 微信登录不上去怎么办怎么办 的解答微信登录不上去怎么办怎么办 1. 检查微信是否登录正常:检查登录账号和密码是…

这是关于 微信登录不上去怎么办怎么办 的解答这是关于 微信登录不上去怎么办怎么办 的解答微信登录不上去怎么办怎么办 1. 检查微信是否登录正常:检查登录账号和密码是…

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

微信登录不上去怎么办怎么办

1. 检查微信是否登录正常:检查登录账号和密码是否正确;检查网络是否畅通。

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

2. 如果登录账号和密码无误,请检查“设置-微信-安全-微信近期使用记录”,若出现异常的记录,则可能为账号被盗,建议及时修改密码,以保护帐号安全。

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

3.如果在更改登录密码后仍然无法登录,则可能是微信账号被冻结,在此情况下可以联系微信客服,提供相关账号信息以恢复账号使用权。

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

微信登录密码忘记了怎么办

1.第一步:打开微信客户端,点击右上角的“我”按钮;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

2.第二步:点击“设置”,在设置界面中,点击“帐号与安全”;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

3.第三步:点击忘记密码,选择用手机号或者邮箱重置;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

4.第四步:用你微信绑定的手机号或者注册的邮箱,进行重置密码;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

5.第五步:按照重置密码的步骤,操作完成即可重设新的登录密码。

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

微信登录两个账号怎么弄

1、打开手机微信,点击“我”,在右上方点击“设置”;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

2、在设置页面,点击“帐号与安全”,选择“多帐号管理”,这时,你就可以添加新的微信号;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

3、点击“添加帐号”,输入新的微信号,通过手机短信快速确认,即可成功登陆新的微信号。

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

微信登录的赚钱软件

1、抖音
2、快手
3、淘宝
4、网易云音乐
5、熊猫直播
6、头条抢红包
7、一起挖
8、苹果手机应用宝
9、街机捕鱼机
10、微赚网

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

微信登录

/*
https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code
*/

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

const request= require("request");
const appId="wx0390dec77cc07ef2";
const appSecret="fd8fd09fd7eeffe5a6cd9f3d5f6bd1cb";
//这里可以更换从别的地方拿,js登录过来以后拿到用户信息,发送出去一个code
const jsCode="0315ncdx0AxpzH1Znmdx01Qcdx0ncdx02";

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

const url=`https://api.weixin.qq.com/sns/jscode2session?appid=${appId}&secret=${appSecret}&js_code=${jsCode}&grant_type=authorization_code`
//让我们编写一个函数
const getInfor=()=>{

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

request(url , (err , res , body) =>{
console.log(body);
})
}

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

getInfor();
}
//测试
// Test();

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

getWx(jsCode){
const request= require("request");
const appId="wx0390dec77cc07ef2";
const appSecret="fd8fd09fd7eeffe5a6cd9f3d5f6bd1cb";
//这里可以更换从别的地方拿,js登录过来以后拿到用户信息,发送出去一个code
// const jsCode="0315ncdx0AxpzH1Znmdx01Qcdx0ncdx02";

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

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.html

var that=this;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

//让我们编写一个函数
const getInfor=()=>{

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

request(url , (err , res , body) =>{

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

console.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
});
}
})
}

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

getInfor();
},

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

covertData(data){
var obj;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

try {
obj = JSON.parse(data);
} catch (error) {
console.log(error);
}

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

return obj;
},

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

bindGetUserInfo(e){

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

//获取用户信息,信息是加密串
this.setData({
userInfo: e.detail
})

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

//获取code
const JAVA_CODE_URL=this.getCode(this.data.userInfor.encryptedData,this.data.userInfor.iv);

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

// 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);

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

wx.request({

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

url:"https://www.code2000.top/api/code",

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

data: {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'
},

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

method:"GET",

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

success:(res)=>{
//success
console.log(res);
self.setData({
code2Session:res.data
});
},

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

fail(error){
console.log("失败",error);
}

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

});

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

return res.code;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

},
//失败就给一个提示
fail(error){
console.log("失败",error)
}
})
}

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

})

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

微信登录指纹锁怎么设置

1.首先,打开微信客户端,然后点击右上角的“我”,进入个人中心界面;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

2.然后,点击右上角的设置按钮,进入设置界面;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

3.在设置界面中,找到“安全中心”,点击进入安全中心;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

4.在安全中心界面中,找到“指纹锁”,点击进入指纹锁设置界面;

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

5.在指纹锁设置界面中,点击“开启指纹锁”,按照提示对你的指纹进行设置,完成之后,指纹锁即可设置成功。

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html

文章源自乘风RC网 - https://www.cfrc.net/answer/53.html
文章链接:https://www.cfrc.net/answer/53.html
文章标题:这是关于 微信登录不上去怎么办怎么办 的解答微信登录不上去怎么办怎么办 1. 检查微信是否登录正常:检查登录账号和密码是…
文章版权:乘风RC网 所发布的内容,部分为原创文章,转载请注明来源,网络转载文章如有侵权请联系我们!
本文最后更新发布于2023年02月24日 22时40分05秒,某些文章具有时效性,若有错误或已失效,请在下方留言或联系:67511004@qq.com
{{yiyan[0].hitokoto}}
0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索