工具:谷歌浏览器
需要用浏览器模拟手机,也可以进行抓包查看
第一步:进入谷歌的开发者工具
按 F12 或者 更多工具开发者工具
然后添加新的模拟信息
模拟信息
ozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E5216a QQ/7.5.5.426 V1_IPH_SQ_7.5.5_1_APP_A Pixel/1080 Core/UIWebView Device/Apple(iPhone 8Plus) NetType/WIFI QBWebViewType/1
第二步
切换到这个模拟器
PC端先模拟UA然后再进入下面的网站,否则会跳到IM的官网去
先进去 QQ 空间https://i.qq.com/
然后进去坦白说https://ti.qq.com/honest-say/my-received.html
able = {"oe": 0, "n": 0, "z": 0,
"oK": 1, "6": 1, "5": 1,
"ow": 2, "-": 2, "A": 2,
"oi": 3, "o": 3, "i": 3,
"7e": 4, "v": 4, "P": 4,
"7K": 5, "4": 5, "k": 5,
"7w": 6, "C": 6, "s": 6,
"7i": 7, "S": 7, "l": 7,
"Ne": 8, "c": 8, "F": 8,
"NK": 9, "E": 9, "q": 9,
'*': 'X'}
print('输入想翻译的:')
userinput = input()
userinput = userinput[4:]
n = 0
while True:
if able.get(userinput[n:n+2],'null') != 'null':
userinput = userinput.replace(userinput[n:n+2],str(able.get(userinput[n:n+2],'*')),1)
else:
userinput = userinput[:n] + userinput[n:].replace(userinput[n],str(able.get(userinput[n],'*')),1)
n += 1
if n == len(userinput):
break
print(userinput)