清除微信或者企业微信的缓存或cookie

news/2024/5/18 15:45:55 标签: 微信, 企业微信, 缓存, 清除缓存, cookie

因为需要真机调试微信公众号或者企业微信,真机调试不像web开发者工具一样有个按钮可以直接清除缓存,所以寻来了一种真机清除cookie缓存的方式:

微信有说取消关注公众号后重新关注就可以清除cookie,但是实测没有生效,而且方法太复杂)

* 微信和企业微信都可以使用

1. 在某个 "微商" 的聊天窗口(或微信公众号,或企业微信应用)输入debugx5.qq.com发送出去

(微信和企业微信都是使用的QQ浏览器的X5内核)

然后他就变成一个可以点击的链接

2. 点击进去选中cookie,点击清除即可


http://www.niftyadmin.cn/n/1644721.html

相关文章

Android exposed beyond app through Intent.getData()

前言 今天在做项目功能的时候遇到一个bug exposed beyond app through Intent.getData() 在项目中点击文件路径跳转过去,编译器报错android os FileUriExposedException 导致错误的原因是没有使用FileProvider 在应用间共享文件 对于面向 Android 7.0 的应用&…

@Autowired一个有多个实现类的接口

Autowired一个接口的时候不少人都会有疑惑,如果 public class B implements A; public class C implements A; Autowired private A a; 此时a调用方法是调用B的方法还是C的方法呢?实测如此操作会导致启动报错了org.s…

android mp4视频下载测试地址亲测有效

前言 最近在做一个在线下载的功能 用图片地址测试 太快了 想用视频测试一下看看进度条 所以收集了一些可以用的.mp4地址 图片 https://bkimg.cdn.bcebos.com/pic/00e93901213fb80ed0e6908339d12f2eb93894ab?x-bce-processimage/resize,m_lfit,w_268,limit_1/format,f_jpg 视…

Android Only the original thread that created a view hierarchy can touch its views

前言 在使用 NumberProgressBar组件的时候 运行时异常Only the original thread that created a view hierarchy can touch its views 异常为:说只有创建这个view的线程才能操作这个 view,普通会认为是将view创建在非UI线程中才会出现这个错误。 Gith…

JavaScript 中 substring()方法和indexOf()方法

1.substring()定义和用法 substring() 方法用于提取字符串中介于两个指定下标之间的字符。 语法 stringObject.substring(start,stop) 参数描述start必需。一个非负的整数,规定要提取的子串的第一个字符在 stringObject 中的位置。stop 可选。一个非负的整数&am…

Android 通过连续点击屏幕事件实现暗门操作

前言 最近新增一个功能 连续点击5次 弹出一个弹框 进入设置页面 这个实现起来也不难 通过事件间隔 来实现 实现 //连续点击5次进入后台private final int CLICK_NUM 5;//点击时间间隔3秒private final int CLICK_INTERVER_TIME 3000;//上一次的点击时间private long lastCl…

使用String类 的 concat()拼接字符串失败

String 的 concat() 方法注释为: Concatenates the specified string to the end of this string. If the length of the argument string is 0, then this String object is returned. Otherwise, a String object is returned that represents a chara…

Android Rxjava+Okhttp+Retrofit实现单文件下载功能

前言 最近接到一个需求,做一个.xls文件下载功能 方便用户统计数据 没什么难度 直接撸起袖子开干 已封装工具类 基于Android RxjavaOkhttpRetrofit 实现效果 需要用的工具类如下 以封装完毕 使用简单 FileDownLoadObserver public abstract class FileDownLoadOb…