|
| 1 | +<?php |
| 2 | +namespace kjBot\SDK; |
| 3 | + |
| 4 | +class API{ |
| 5 | + const send_private_msg = '/send_private_msg'; |
| 6 | + const send_private_msg_async = '/send_private_msg_async'; |
| 7 | + const send_group_msg = '/send_group_msg'; |
| 8 | + const send_group_msg_async = '/send_group_msg_async'; |
| 9 | + const send_discuss_msg = '/send_discuss_msg'; |
| 10 | + const send_discuss_msg_async = '/send_discuss_msg_async'; |
| 11 | + const send_msg = '/send_msg'; |
| 12 | + const send_msg_async = '/send_msg_async'; |
| 13 | + const delete_msg = '/delete_msg'; |
| 14 | + const send_like = '/send_like'; |
| 15 | + const set_group_kick = '/set_group_kick'; |
| 16 | + const set_group_ban = '/set_group_ban'; |
| 17 | + const set_group_anonymous_ban = '/set_group_anonymous_ban'; |
| 18 | + const set_group_whole_ban = '/set_group_whole_ban'; |
| 19 | + const set_group_admin = '/set_group_admin'; |
| 20 | + const set_group_anonymous = '/set_group_anonymous'; |
| 21 | + const set_group_card = '/set_group_card'; |
| 22 | + const set_group_leave = '/set_group_leave'; |
| 23 | + const set_group_special_title = '/set_group_special_title'; |
| 24 | + const set_discuss_leave = '/set_discuss_leave'; |
| 25 | + const set_friend_add_request = '/set_friend_add_request'; |
| 26 | + const set_group_add_request = '/set_group_add_request'; |
| 27 | + const get_login_info = '/get_login_info'; |
| 28 | + const get_stranger_info = '/get_stranger_info'; |
| 29 | + const get_group_list = '/get_group_list'; |
| 30 | + const get_group_member_info = '/get_group_member_info'; |
| 31 | + const get_group_member_list = '/get_group_member_list'; |
| 32 | + const get_cookies = '/get_cookies'; |
| 33 | + const get_csrf_token = '/get_csrf_token'; |
| 34 | + const get_credentials = '/get_credentials'; |
| 35 | + const get_record = '/get_record'; |
| 36 | + const get_status = '/get_status'; |
| 37 | + const get_version_info = '/get_version_info'; |
| 38 | + const set_restart = '/set_restart'; |
| 39 | + const set_restart_plugin = '/set_restart_plugin'; |
| 40 | + const clean_data_dir = '/clean_data_dir'; |
| 41 | + const clean_plugin_log = '/clean_plugin_log'; |
| 42 | + const _get_friend_list = '/_get_friend_list'; |
| 43 | + const _get_group_info = '/_get_group_info'; |
| 44 | + const _get_vip_info = '/_get_vip_info'; |
| 45 | + const __check_update = '/.check_update'; |
| 46 | + const __handle_quick_operation = '/.handle_quick_operation'; |
| 47 | +} |
0 commit comments