下免费微信账号密码号和免费微信账号密码密码

请登陆后使用
只需一步,快速开始
吧友自助信息发布区,请自行甄别
查看: 2211|回复: 7
用了某人的微信解封软件,账号不断被改密码
大家留点心了,微信解封不需要微信密码的.所以大家用解封软件的话把密码去掉吧.都是一些老号,养了很久的,密码自己也改过.自从用了某版本的微信解封就出现这情况.解封的时候没留心把密码去掉
用假密码就好,解封不用密码的
没吃过亏,所以之前懒得改&
同样被改密码了 只能说不要脸脸了
用假密码就好,解封不用密码的
没吃过亏,所以之前懒得改
能私下告知下那款软件么 ?谢谢
爆料就免了.反正你们不管用哪款解封软件你都要把密码批量改掉或者去掉.能无私的人不多,要使坏的人也不少.
难怪我一手出给别人帐号也会无缘无故出现密码错误,还老怀疑别人故意坑我,看来问题的根本是那些解封软件啊。
之前做大众卷的时候也被无缘无故改密码,就是用过那些扫号软件
Powered by为什么百词斩用微信登入填了微信号和密码用了两次之后就登不上百词斩了?
已有帐号?
无法登录?
社交帐号登录微信在输入框内输入用户名和密码
.shdmt.entity.ConcernedCustomerE
.shdmt.entity.CustomerE
.shdmt.entity.WeXinEventE
.shdmt.entity.WelMsgE
.shdmt.framework.util.MessageU
.shdmt.framework.wexinmessage.A
.shdmt.framework.wexinmessage.NewsM
.shdmt.framework.wexinmessage.TextM
.shdmt.repository.ConcernedCustomerD
.shdmt.repository.CustomD
import mons.lang3.StringU
import org.springframework.beans.factory.annotation.A
import org.springframework.beans.factory.annotation.V
import org.
import org.springframework.transaction.annotation.T
import java.sql.T
import java.util.*;
* Created by yaoyao on .
@Component
@Transactional
public class WeXinCoreService {
@Autowired
private ConcernedCustomerDao concernedCustomerD
@Autowired
private AccessTokenService accessTokenS
@Autowired
private CustomDao customD
@Autowired
private WeXinEventService weXinEventS
@Autowired
private CodeService codeS
@Autowired
private SmsService smsS
@Autowired
private WelMsgService welMsgS
@Value(&#{appProperties['upload.config.fileURLPrefix']}&)
private String fileURLP
public String processRequest(String msg) {
String respMessage =
// 默认返回的文本消息内容
String respContent = &请求处理异常,请稍候尝试!&;
// xml请求解析
Map&String, String& requestMap = MessageUtil.parseXml(msg);
System.out.println(&Event==& + requestMap.get(&Event&));
// 发送方帐号(open_id)
String open_id = requestMap.get(&FromUserName&);
// 公众帐号
String toUserName = requestMap.get(&ToUserName&);
// 消息类型
String msgType = requestMap.get(&MsgType&);
// 回复文本消息
TextMessage textMessage = new TextMessage();
textMessage.setToUserName(open_id);
textMessage.setFromUserName(toUserName);
textMessage.setCreateTime(new Date().getTime());
textMessage.setMsgType(MessageUtil.RESP_MESSAGE_TYPE_TEXT);
textMessage.setFuncFlag(0);
// 文本消息
if (msgType.equals(MessageUtil.REQ_MESSAGE_TYPE_TEXT)) {
String content = requestMap.get(&Content&);
//是否为绑定号码
WeXinEventEntity weXinEventEntity = weXinEventService.getAllWeXinEvent(open_id);
if (weXinEventEntity != null) {
if (!StringUtils.isBlank(content)) {
//获取 微信用户
List&ConcernedCustomerEntity& concernedCustomerEntities = concernedCustomerDao.findByOpenidAndType(open_id, 1);
//根据用户名密码查询
if (StringUtils.isEmpty(weXinEventEntity.getValue())) {
if (concernedCustomerEntities.size() & 0) {
//保存他要绑定的登录名称
weXinEventEntity.setValue(content);
weXinEventService.save(weXinEventEntity);
respContent = &请输入你要绑定的用户名的密码&;
//他是在绑定数据
已完成第一步
根据这个openid 查询出用户名 并得到密码
List&CustomerEntity& customerEntities = customDao.findByCustomerCodeAndPassword(weXinEventEntity.getValue(), content);
if (customerEntities.size() & 0 && concernedCustomerEntities.size() & 0) {
CustomerEntity customer = customerEntities.get(0);
customer.setConcernedCustomer(concernedCustomerEntities.get(0));
respContent = &绑定成功&;
respContent = &绑定失败,用户名和密码不匹配&;
respContent = &你发送的消息是& +
textMessage.setContent(respContent);
respMessage = MessageUtil.textMessageToXml(textMessage);
// 图片消息
else if (msgType.equals(MessageUtil.REQ_MESSAGE_TYPE_IMAGE)) {
//如果绑定了 则上传该工单
List&ConcernedCustomerEntity& concernedCustomerEntities = concernedCustomerDao.findByOpenidAndType(open_id, 1);
if (concernedCustomerEntities.size() & 0) {
ConcernedCustomerEntity concernedCustomerEntity = concernedCustomerEntities.get(0);
List&CustomerEntity& customerEntities = customDao.findByConcernedCustomer(concernedCustomerEntity);
if (customerEntities.size() & 0) {
respContent = &您已经绑定微信&;
//把状态放入一个表中
1 并且过期时间设定
WeXinEventEntity weXinEventEntity = weXinEventService.getAllWeXinEvent(open_id);
WeXinEventEntity weXinEventEntity1 = weXinEventService.findByOpenid(open_id);
if (weXinEventEntity == null) {
if (weXinEventEntity1 != null) {
weXinEventService.dl(weXinEventEntity1);
weXinEventEntity = new WeXinEventEntity();
weXinEventEntity.setEvent(&binding&);//事件类型为moble
weXinEventEntity.setIswait(Boolean.TRUE);//在等待
weXinEventEntity.setOpenid(open_id);
Calendar calendar1 = Calendar.getInstance();
calendar1.add(Calendar.MINUTE, +10);//当前时间+10分钟 是过期时间
weXinEventEntity.setOut_time(new Timestamp(calendar1.getTimeInMillis()));
weXinEventService.save(weXinEventEntity);
respContent = &请输入你要绑定的登录名称&;
textMessage.setContent(respContent);
respMessage = MessageUtil.textMessageToXml(textMessage);
// 地理位置消息
else if (msgType.equals(MessageUtil.REQ_MESSAGE_TYPE_LOCATION)) {
respContent = &您发送的是地理位置消息!&;
// 链接消息
else if (msgType.equals(MessageUtil.REQ_MESSAGE_TYPE_LINK)) {
respContent = &您发送的是链接消息!&;
// 音频消息
else if (msgType.equals(MessageUtil.REQ_MESSAGE_TYPE_VOICE)) {
respContent = &您发送的是音频消息!&;
// 事件推送
else if (msgType.equals(MessageUtil.REQ_MESSAGE_TYPE_EVENT)) {
// 事件类型
String eventType = requestMap.get(&Event&);
// 自定义菜单点击事件
if (eventType.equals(MessageUtil.EVENT_TYPE_SUBSCRIBE)) {
attention(open_id);
NewsMessage newsMessage = buildmessage(open_id, toUserName,0);
// 将图文消息对象转换成xml字符串
respMessage = MessageUtil.newsMessageToXml(newsMessage);
} else if (eventType.equals(MessageUtil.EVENT_TYPE_UNSUBSCRIBE)) {
// 取消关注,用户接受不到我们发送的消息了,可以在这里记录用户取消关注的日志信息
canelAttention(open_id);
} else if (eventType.equalsIgnoreCase(MessageUtil.EVENT_TYPE_CLICK)) {
// 事件KEY值,与创建自定义菜单时指定的KEY值对应
String eventKey = requestMap.get(&EventKey&);
if (eventKey.equals(&CONTACT_US&)) {
NewsMessage newsMessage = buildmessage(open_id, toUserName,1);
// 将图文消息对象转换成xml字符串
respMessage = MessageUtil.newsMessageToXml(newsMessage);
/*else if (eventType.equalsIgnoreCase(&VIEW&)) {
// 事件KEY值,与创建自定义菜单时指定的KEY值对应
String eventKey = requestMap.get(&EventKey&);
String e = &EventKey=https://open./connect/oauth2/authorize?appid=wx186f9fb&redirect_uri=http://yaoyao66123.eicp.net/customCenter/ordersearch&response_type=code&scope=snsapi_base&state=1#wechat_redirect&;
if (eventKey.equals(e)) {
textMessage.setContent(respContent);
respMessage = MessageUtil.textMessageToXml(textMessage);
} catch (Exception e) {
e.printStackTrace();
respMessage = &有异常了。。。&;
return respM
private void attention(String open_id) {
List&ConcernedCustomerEntity& list = concernedCustomerDao.findByOpenid(open_id);
if (list.size() & 0) {
//之前关注过
ConcernedCustomerEntity concernedCustomerEntity = list.get(0);
concernedCustomerEntity.setCancelledtime(null);
concernedCustomerEntity.setIsconcerned(Boolean.TRUE);
private NewsMessage buildmessage(String open_id, String toUserName, Integer type) {
// 创建图文消息
NewsMessage newsMessage = new NewsMessage();
newsMessage.setToUserName(open_id);
newsMessage.setFromUserName(toUserName);
newsMessage.setCreateTime(new Date().getTime());
newsMessage.setMsgType(MessageUtil.RESP_MESSAGE_TYPE_NEWS);
newsMessage.setFuncFlag(0);
List&WelMsgEntity& welMsgEntities = welMsgService.findAll(type);
List&WelMsgEntity& needlist = new ArrayList&WelMsgEntity&();
if (welMsgEntities.size() & 0) {
for (WelMsgEntity welMsgEntity : welMsgEntities) {
if (needlist.size() & 8) {
needlist.add(welMsgEntity);
List&Article& articleList = new ArrayList&Article&();
for (WelMsgEntity welMsgEntity : needlist) {
Article article = new Article();
article.setTitle(welMsgEntity.getTitle());
article.setDescription(welMsgEntity.getDescription());
article.setPicUrl(fileURLPrefix + welMsgEntity.getPicurl());
article.setUrl(welMsgEntity.getUrl());
articleList.add(article);
// 设置图文消息个数
newsMessage.setArticleCount(articleList.size());
// 设置图文消息包含的图文集合
newsMessage.setArticles(articleList);
return newsM
private void canelAttention(String open_id) {
List&ConcernedCustomerEntity& list = concernedCustomerDao.findByOpenid(open_id);
if (list.size() & 0) {
ConcernedCustomerEntity concernedCustomerEntity = list.get(0);
concernedCustomerEntity.setCancelledtime(new Timestamp(System.currentTimeMillis()));
concernedCustomerEntity.setIsconcerned(Boolean.FALSE);
concernedCustomerDao.save(concernedCustomerEntity);
(window.slotbydup=window.slotbydup || []).push({
id: '2467140',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467141',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467143',
container: s,
size: '1000,90',
display: 'inlay-fix'
(window.slotbydup=window.slotbydup || []).push({
id: '2467148',
container: s,
size: '1000,90',
display: 'inlay-fix'忘记了微信公众帐号和密码_百度文库
两大类热门资源免费畅读
续费一年阅读会员,立省24元!
忘记了微信公众帐号和密码
上传于||暂无简介
阅读已结束,如果下载本文需要使用0下载券
想免费下载更多文档?
定制HR最喜欢的简历
你可能喜欢微信电脑版怎么登陆?微信电脑版输入账号密码登陆方法介绍
作者:佚名
字体:[ ] 来源:互联网 时间:02-01 11:38:29
以往成功登陆微信电脑版需要使用手机扫描二维码才可以,本文将为大家介绍如何用电脑使用账号密码登陆微信,那么,如何在电脑上用账号和密码登入微信呢?有兴趣的朋友们可以了解本文哦
  电脑版怎么登陆呢?本文要讲的是微信电脑版账号登录方法,像网页版的登录非常简单直接扫一下二维码就行了。使用账号登录的话首先得在脚本之家下载靠谱助手,然后安装微信。再接着进行下面的操作,具体操作方法如下:
最新的微信电脑版登陆教程:
软件名称:电脑微信(WeChat) .0 官方正式免费安装版软件大小:9.3MB更新时间:
1、在脚本之家下载微信电脑版安装应用程序,解压缩后然后双击安装包进行安装,如图:
2、安装成功后,双击桌面上的微信图标,如图:
3、再打开的窗口上,按照图上面的提示,使用手机微信扫描图片上的二维码,如图:
4、扫描二维码后,利用手机确认登陆,如图:
5、由此,微信电脑版登陆成功,这样就可以在电脑上和微信好友聊天了,如图:
6、第二次登陆后只需要在手机上进行确认就可以了,如图:
微信电脑版输入账号密码登陆方法
软件名称:靠谱助手(安卓模拟器管理软件) V5.1.2682 中文官方安装版软件大小:24.2MB更新时间:
  1.下载安装靠谱助手,然后在靠谱助手中安装微信。
  2.打开微信,在弹出的微信登录界面选择你要登录的账号方式(手机号/qq号、邮箱地址或者Facebook)。小编以qq号为例。
  3.输入qq号和密码,最后点登录即可。
大家感兴趣的内容
12345678910
最近更新的内容

我要回帖

更多关于 微信绑定qq号密码错误 的文章

 

随机推荐