Monthly Archives: May 2015

支付宝收款页面的替代,自动填写数据版

支付宝为了所谓的安全,禁止直接跳转,方法是检测到有非支付宝referer就302到https://shenghuo.alipay.com/send/payment/fill.htm 。 我们可以用B站的HTTPS跳转法,但是如果懒得弄证书什么的,这里给出一个不是很漂亮的方法: <html> <head> <title>正在跳转……</title> <meta http-equiv=”Content-Language” content=”zh-CN”> <meta HTTP-EQUIV=”Content-Type” CONTENT=”text/html; charset=gb2312″> </head> <body> <script> URL = “https://shenghuo.alipay.com/send/payment/fill.htm?optEmail={邮箱}&payAmount={钱数}&title={附言}” function lose_in_webkit(url) { location = “data:text/html,\<script>location='” + url + ‘&_=’ +… Read more »