{"id":18024432,"url":"https://github.com/telsav/smartqq","last_synced_at":"2025-10-14T04:41:51.764Z","repository":{"id":111115851,"uuid":"101064382","full_name":"telsav/SmartQQ","owner":"telsav","description":"a cross platform web-qq client","archived":false,"fork":false,"pushed_at":"2017-08-24T11:27:32.000Z","size":1533,"stargazers_count":26,"open_issues_count":0,"forks_count":11,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-22T18:11:34.586Z","etag":null,"topics":["asp-net-core","chat-bot","chat-client","chatbot","netcore","qq","smartqq","webqq"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/telsav.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-22T13:12:14.000Z","updated_at":"2024-10-09T21:57:12.000Z","dependencies_parsed_at":"2023-06-09T00:45:12.126Z","dependency_job_id":null,"html_url":"https://github.com/telsav/SmartQQ","commit_stats":null,"previous_names":["wangcharlie/smartqq"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telsav%2FSmartQQ","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telsav%2FSmartQQ/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telsav%2FSmartQQ/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telsav%2FSmartQQ/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/telsav","download_url":"https://codeload.github.com/telsav/SmartQQ/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245760634,"owners_count":20667886,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asp-net-core","chat-bot","chat-client","chatbot","netcore","qq","smartqq","webqq"],"created_at":"2024-10-30T07:12:49.713Z","updated_at":"2025-10-14T04:41:46.730Z","avatar_url":"https://github.com/telsav.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SmartQQ  \n## 采用.NET CORE可运行在 Linux 、 Windows 和 Mac OSX 平台下。\n\n# 效果如下图:\n\u003cdiv align=\"center\"\u003e\n\u003cimg src=\"readme/QQ截图20170823115255.png\"/\u003e\n\u003c/div\u003e\n\n-----------------\n| **`Linux CPU`** | **`Linux GPU`** | **`Mac OS CPU`** | **`Windows CPU`** | **`Android`** |\n|-----------------|---------------------|------------------|-------------------|---------------|\n| [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-cpu)](https://github.com/WangCharlie/SmartQQ) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-linux-gpu)](https://github.com/WangCharlie/SmartQQ) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-mac)](https://github.com/WangCharlie/SmartQQ) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-win-cmake-py)](https://github.com/WangCharlie/SmartQQ) | [![Build Status](https://ci.tensorflow.org/buildStatus/icon?job=tensorflow-master-android)](https://github.com/WangCharlie/SmartQQ) |\n\n# 调用代码\n```\n SmartQQClient\n                // 登录\n                .Login((bytes) =\u003e\n                {\n                    using (var ms = new MemoryStream(bytes))\n                    {\n                        SmartQQClient.ConsoleWriteImage(new Bitmap(Image.FromStream(ms)));\n                        Logger.Instance.Info(\"二维码已打印在屏幕，请使用手机QQ扫描。\");\n                    }\n                })\n                // 好友消息回调\n                .ReceivedFriendMessage((message) =\u003e {\n                    message.Reply(\"test\");\n                    Logger.Instance.Info($\"{message.Sender.Alias ?? message.Sender.Nickname}:{message.Content}\");\n                })\n                // 群消息回调\n                .ReceivedGroupMessage((message) =\u003e {\n                    Logger.Instance.Info(\n                    $\"[{message.Group.Name}]{message.Sender.Alias ?? message.Sender.Nickname}:{message.Content}\");\n                    if (message.Content.IsMatch(@\"^\\s*Knock knock\\s*$\"))\n                        message.Reply(\"Who's there?\");\n                    else if (message.StrictlyMentionedMe)\n                        message.Reply(\"什么事？\");\n                })\n                // 讨论组消息回调\n                .ReceivedDiscussionMessage((message) =\u003e\n                {\n                    Logger.Instance.Info($\"[{message.Discussion.Name}]{message.Sender.Nickname}:{message.Content}\");\n                })\n                // 消息回显\n                .ReceivedMessageEchoEventArgs((e) =\u003e {\n                    Logger.Instance.Info($\"{e.Target.Name}\u003e{e.Content}\");\n                })\n                //开始服务\n                .Start((client) =\u003e {\n                    Logger.Instance.Info($\"欢迎，{client.Nickname}!\");\n                });\n\n            Console.ReadLine();\n```\n\n# 引用\nhttps://github.com/TJYSunset/DumbQQ\n\u003c/br\u003e\nhttps://github.com/scienjus/smartqq\n\n\n# 类似项目\nhttps://github.com/rmbadmin/DumbQQ-Core\n\n# 欢迎提交issue \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelsav%2Fsmartqq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftelsav%2Fsmartqq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelsav%2Fsmartqq/lists"}