支付宝转账页面的一个未公开?的 API

支付宝的转账页面相信对大家都不陌生
https://shenghuo.alipay.com/send/payment/fill.htm
但是这个页面支持非公开 API 这种事大家应该不会太清楚
使用方法
向以上页面( https://shenghuo.alipay.com/send/payment/fill.htm )
传入 POST 表单请求
表单内容
optEmail:收款人邮箱地址
payAmount:付款金额
title:付款说明

以下为一个最简化的付款按钮示例(向我付款 10 元)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><meta http-equiv="Content-Language" content="zh-cn" /></head><body><form id="a" action="https://shenghuo.alipay.com/send/payment/fill.htm" method="post"><input type="hidden" name="optEmail" value="h@kirito.me"><input type="hidden" name="payAmount" value=10.00><input type="hidden" name="title" value="付款说明"><input type="submit"></form></body></html>

您可以点击

查看效果

https://kirito.me/default/alipay-uncovered-transfer-api.html

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *