下午做了一个后台自动发送按键的小玩具,有兴趣可以试试
先下载APIHub并驻留后台,
然后
就可以后台发送按键了。
比如用ahk的代码
loop
{
Random, delay, 1000, 5000 ; 生成5到15秒之间的随机延迟时间
Sleep, %delay% ; 等待延迟时间
URL := "http://127.0.0.1:5034/jb/模拟输出按键py?key1=down&key2=&key3=" ; 替换为您要发送GET请求的URL
FilePath := "C:\Temp\response.txt" ; 替换为您想要保存响应内容的文件路径
URLDownloadToFile, % URL, % FilePath
; 可选:读取响应内容
; FileRead, response, % FilePath
; MsgBox % "Response: " response
} until (false) ; 实际上会一直循环,可以通过其他条件来控制循环结束