• 使用Android辅助功能AccessibilityService实现微信自动聊天【外挂插件】


    本文是使用Android辅助功能AccessibilityService实现微信自动聊天demo;

    只是为了跟深入的了解Android辅助功能, 提高自身的动手能力。 请勿用于商用,或非法用途。

    动手前,基本的准备要求:

    聊天机器人app demo,去操作其他App,实现自动化操作,必须要懂的一些技术点;

    1.熟练使用AccessibilityService、AccessibilityNodeInfo等一系列辅助类。

    2.会使用uiautomatorviewer.bat 找控件id或text。

    第一点,网上应该不少吧,你不懂可以去百度。或参考上一篇文章:Android辅助功能【Accessibility】入门简介及使用

    第二点,使用android sdk自带的uiautomatorviewer.bat, 位于%ANDROID_SDK_HOME%\tools\bin; 双击打开,如下图界面;

    你可以从这里,获知很多有价值的东西:

    比如APP包名,packageName;

    当前某一个控件的ID,resource-id;

    当前控件是否可点击,clickable;

    当前控件是否可滑动,srollable;

    此处举个例子:

    既然,从这儿取到的控件id,那么如何在代码中如何通过资源id,请看如下代码:

    1. public class AutoChatService extends AccessibilityService {
    2. //AccessibilityEvent是一个事件类,里面封装了许多字段,表示各种不同的事件(通知、窗口内容)
    3. @Override
    4. public void onAccessibilityEvent(AccessibilityEvent event) {
    5. String packageName = event.getPackageName().toString();
    6. String className = event.getClassName().toString();
    7. LogUtils.i("event from:", packageName, className);
    8. AccessibilityNodeInfo root = this.getRootInActiveWindow();
    9. //先获取tabhost[微信,通讯录,发现,我], 微信的右上角是否有红色小圈,微信上的控件
    10. List<AccessibilityNodeInfo> wechatBadgeList = root.findAccessibilityNodeInfosByViewId("com.tencent.mm:id/j0_");
    11. }
    12. }

    要自动操作,必须要有自动操作权限

    在xml文件中注册service

    1. <service
    2. android:name=".AutoChatService"
    3. android:enabled="true"
    4. android:exported="true"
    5. android:label="@string/app_name"
    6. android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
    7. <intent-filter>
    8. <action android:name="android.accessibilityservice.AccessibilityService" />
    9. </intent-filter>
    10. <meta-data
    11. android:name="android.accessibilityservice"
    12. android:resource="@xml/accessibility_service" />
    13. </service>

    在res 下新建xml包,建xml文件 accessibility_service。

    1. <?xml version="1.0" encoding="utf-8"?>
    2. <accessibility-service
    3. xmlns:android="http://schemas.android.com/apk/res/android"
    4. android:accessibilityEventTypes="typeAllMask"
    5. android:accessibilityFeedbackType="feedbackAllMask"
    6. android:accessibilityFlags="flagDefault"
    7. android:canRetrieveWindowContent="true"
    8. android:description="@string/accessibility_description"
    9. android:notificationTimeout="3000"
    10. android:packageNames="com.tencent.mm,com.tencent.mobileqq"
    11. />

    现在,我假设,你已经有足够的基础,做辅助功能操作了。就可以对接自动聊天api,例如:

    • 腾讯云 智能客服机器人 地址:https://cloud.tencent.com/solution/service
    • 图灵api接口(这个收费了,之前免费的),地址:http://www.turingapi.com/
    • 阿里云 智能客服机器人 地址:https://www.aliyun.com/product/beebot

    本案例使用图灵api接口:

    1. public class ChatRobot {
    2. public ChatRobot() {
    3. }
    4. public void feedWithTuringapi(String text, ChatRobot.ResponseHandler handler) {
    5. //异步调用聊天Api接口;
    6. AsyncHttpClient client = new AsyncHttpClient();
    7. RequestParams params = new RequestParams();
    8. params.put("key", "xxx");
    9. params.put("secret", "xxx");
    10. params.put("info", text);
    11. client.post("http://www.tuling123.com/openapi/api", params, new JsonHttpResponseHandler() {
    12. public void onSuccess(int statusCode, Header[] headers, JSONObject response) {
    13. String text = null;
    14. try {
    15. text = response.getString("text");
    16. } catch (Exception e) {}
    17. handler.onFeedBack(text);
    18. }
    19. public void onFailure(int statusCode, Header[] headers, Throwable throwable, JSONObject errorResponse) {
    20. handler.onFeedBack(Emoj.getEmoji("调皮") + text + " <- my replay " + Emoj.getEmoji("微笑"));
    21. }
    22. });
    23. }
    24. public interface ResponseHandler {
    25. //机器人返回内容
    26. void onFeedBack(String msg);
    27. }
    28. }

    网络请求需要加网络权限昂

    好了,你已经获取到聊天回复内容了。利用accesibilityNodeInfo的复制粘贴在微信app中自动回复消息吧。

    项目微信自动聊天机器人截图

     

    附上源码demo下载地址,https://download.csdn.net/download/cattong/87064455

  • 相关阅读:
    java项目-第102期基于ssm的校园二手交易平台-java毕业设计
    C3P0和Druid数据库连接池的使用
    Revit SDK 介绍:NewForm 新建体量
    关于香港高防IP需要关注的几个问题
    POSIX线程使用signal模拟“中断“处理流程
    vue配置多个服务端请求地址并实现scp2自动部署
    springboot实现websocket
    「架构师合集」
    7.29模拟赛总结
    基于RuoYi-Flowable-Plus的若依ruoyi-nbcio支持formdesigner的本地图片上传与回显的功能实现
  • 原文地址:https://blog.csdn.net/cattong/article/details/127912069