alipay 0.15.0 → 0.15.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fcc10137b698d1560fed86a1706776346054e24c
4
- data.tar.gz: 9aef05704cc836dca1b3002386915ec5b87c6940
3
+ metadata.gz: '09613954cbb2717b9bf8b39d884c34586955a6ff'
4
+ data.tar.gz: 68ff46cddf2dcab1bbee320a2cbcb6aa8a02984a
5
5
  SHA512:
6
- metadata.gz: b210fcf41f1713729caf7e9364c3d8b1729569fc283bc11f642a751166c9ea0526c2ceaf1aabf9715abed0425a9ce8c1eae246f977aacf1c9d8823289b28ff77
7
- data.tar.gz: 5e66105cb20ee264b430ab66ead5d89209d6b26035cf8ffa0aaacb4bdb88e06d6c958306530bb799f95f977510c84537531e3442698879f806189b08979cd276
6
+ metadata.gz: 3c4c7634bf06766e46c7d75f9fb0641b73cd8c8549828478d30509afb27e42792b1e24c07b2b3c51cfddf59c13a4059815612202f2105602f5b58a94d34467dd
7
+ data.tar.gz: d17d7fe8ca5797da669d0a4bc6563d8fbd7ce24bf57b01ceac7a1860c6c8997872644c053edcdb6ede8f322bce8cb1eaa31054929f2ee73336209f37e9e01612
@@ -1,5 +1,9 @@
1
1
  ## master
2
2
 
3
+ ## v0.15.1 (2018-06-16)
4
+
5
+ - Add `partner` and `seller_id` options for legacy API, thanks @KQyongzhang #83
6
+
3
7
  ## v0.15.0 (2017-08-27)
4
8
 
5
9
  - Add `Alipay::Client` for open API.
data/README.md CHANGED
@@ -1,49 +1,75 @@
1
1
  # Alipay
2
2
 
3
- Unofficial alipay ruby gem.
3
+ Unofficial Alipay ruby gem.
4
4
 
5
- Note: Alipay::Client Api have not enough feedback in production yet, please fully test in your staging environment before production. You can find legacy API document [here](doc/legacy_api.md).
5
+ Note: Alipay::Client API does not have enough feedback in production yet, please fully test in your staging environment before production. You can find legacy API document [here](doc/legacy_api.md).
6
6
 
7
7
  You should read [https://doc.open.alipay.com](https://doc.open.alipay.com) before using this gem.
8
8
 
9
9
  ## Installation
10
10
 
11
- Add this line to your application's Gemfile:
11
+ To install using [Bundler](http://bundler.io/). Add this line to your
12
+ application's Gemfile:
12
13
 
13
14
  ```ruby
14
- gem 'alipay', '~> 0.15.0'
15
+ gem 'alipay', '~> 0.15.1'
15
16
  ```
16
17
 
17
18
  Then run:
18
-
19
- ```console
19
+ ```bash
20
20
  $ bundle
21
21
  ```
22
22
 
23
- ## Usage
23
+ Or you can manually install using [RubyGems](http://rubygems.org/):
24
+ ```bash
25
+ $ gem install alipay -v 0.15.1
26
+ ```
27
+
28
+ ## Getting Started
29
+
30
+ This gem needs to be configured with your application's private key for Alipay and Alipay's public key. Here is a [quick guide](doc/rsa_key_en.md) on generating RSA key for use with this gem to get you started.
24
31
 
32
+ ### Setup
25
33
  ```ruby
26
- alipay_client = Alipay::Client.new(
27
- url: 'https://openapi.alipaydev.com/gateway.do',
28
- app_id: '2016000000000000',
34
+ require 'alipay'
35
+
36
+ # setup the client to communicate with either production API or sandbox API
37
+ # https://openapi.alipay.com/gateway.do (Production)
38
+ # https://openapi.alipaydev.com/gateway.do (Sandbox)
39
+ API_URL = 'https://openapi.alipaydev.com/gateway.do'
40
+
41
+ # setup your own credentials and certificates
42
+ APP_ID = '2016xxxxxxxxxxxx'
43
+ APP_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\nxkbt...4Wt7tl\n-----END RSA PRIVATE KEY-----\n"
44
+ ALIPAY_PUBLIC_KEY="-----BEGIN PUBLIC KEY-----\nTq43T5...OVUAQb3R\n-----END PUBLIC KEY-----\n"
45
+
46
+ # initialize a client to communicate with the Alipay API
47
+ @alipay_client = Alipay::Client.new(
48
+ url: API_URL,
49
+ app_id: APP_ID,
29
50
  app_private_key: APP_PRIVATE_KEY,
30
51
  alipay_public_key: ALIPAY_PUBLIC_KEY
31
52
  )
53
+ ```
32
54
 
33
- alipay_client.page_execute_url(
55
+ ### Create a payment
56
+ ```ruby
57
+ @alipay_client.page_execute_url(
34
58
  method: 'alipay.trade.page.pay',
35
59
  biz_content: {
36
60
  out_trade_no: '20160401000000',
37
61
  product_code: 'FAST_INSTANT_TRADE_PAY',
38
62
  total_amount: '0.01',
39
63
  subject: 'test'
40
- }.to_json, # to_json is important!
64
+ }.to_json(ascii_only: true), # to_json(ascii_only: true) is important!
41
65
  timestamp: '2016-04-01 00:00:00'
42
66
  )
67
+
68
+ # This method will then return a payment url
43
69
  # => 'https://openapi.alipaydev.com/gateway.do?app_id=201600...'
44
70
  ```
45
71
 
46
- Read [Alipay::Client](lib/alipay/client.rb) for usage detail.
72
+ Read [Alipay::Client](lib/alipay/client.rb) or the [Quick Start Guide](doc/quick_start_en.md) for usage detail.
47
73
 
48
74
  ## Contributing
49
75
 
@@ -0,0 +1,532 @@
1
+ 简易入门指南
2
+ =================
3
+
4
+ ### [English](quick_start_en.md)
5
+
6
+ ## 导航
7
+ * [设置客户端](#设置客户端)
8
+ * [Ruby](#ruby)
9
+ * [Ruby on Rails](#ruby-on-rails)
10
+ * [创建支付订单](#创建支付订单)
11
+ * [电脑网站支付](#电脑网站支付)
12
+ * [手机网站支付](#手机网站支付)
13
+ * [扫码支付](#扫码支付)
14
+ * [分期付款](#分期付款)
15
+ * [验证回调数据](#验证回调数据)
16
+ * [查询支付状态](#查询支付状态)
17
+ * [终止支付订单](#终止支付订单)
18
+ * [关闭交易](#关闭交易)
19
+ * [撤销交易](#撤销交易)
20
+ * [交易退款](#交易退款)
21
+ * [发起退款](#发起退款)
22
+ * [查询退款状态](#查询退款状态)
23
+ * [转帐](#转帐)
24
+ * [转帐到顾客支付宝账户](#转帐到顾客支付宝账户)
25
+ * [查询转帐状态](#查询转帐状态)
26
+
27
+
28
+
29
+ ## 设置客户端
30
+
31
+ **指南内所有的示例会假设你已设置好客户端**
32
+
33
+ ### Ruby
34
+ ```ruby
35
+ # 保存好应用ID,密钥,API接口地址等设置
36
+ API_URL: 'https://openapi.alipaydev.com/gateway.do'
37
+ APP_ID: '2016000000000000'
38
+ APP_PRIVATE_KEY: "-----BEGIN RSA PRIVATE KEY-----\nxkbt...4Wt7tl\n-----END RSA PRIVATE KEY-----\n"
39
+ ALIPAY_PUBLIC_KEY: "-----BEGIN PUBLIC KEY-----\nTq43T5...OVUAQb3R\n-----END PUBLIC KEY-----\n"
40
+
41
+ # 建立一个客户端以便快速调用API
42
+ @client = Alipay::Client.new(
43
+ url: API_URL,
44
+ app_id: APP_ID,
45
+ app_private_key: APP_PRIVATE_KEY,
46
+ alipay_public_key: ALIPAY_PUBLIC_KEY
47
+ )
48
+ ```
49
+
50
+ ### Ruby on Rails
51
+ 你可以保存你的支付宝设置为环境变量,或者建立一个文档在Rails初始化时导入。
52
+
53
+ 在这个范例里,我们将使用 `dotenv-rails` gem 把支付宝所需设置保存为环境变量.
54
+
55
+ 在你的 Gemfile
56
+ ```ruby
57
+ # Gemfile
58
+ gem 'alipay', '~> 0.15.0'
59
+ gem 'dotenv-rails', '~> 2.2', '>= 2.2.1'
60
+ ```
61
+ 命令行运行
62
+ ```bash
63
+ $ bundle install
64
+ ```
65
+
66
+ Rails 根目录下创建一个 .env 文件
67
+ ```ruby
68
+ # .env
69
+ APP_ID=2016000000000000
70
+ ALIPAY_API=https://openapi.alipaydev.com/gateway.do
71
+ APP_PRIVATE_KEY="-----BEGIN RSA PRIVATE KEY-----\nxkbt...4Wt7tl\n-----END RSA PRIVATE KEY-----\n"
72
+ ALIPAY_PUBLIC_KEY="-----BEGIN PUBLIC KEY-----\nTq43T5...OVUAQb3R\n-----END PUBLIC KEY-----\n"
73
+ ```
74
+
75
+ 设后置好,你可以在你的 Ruby on Rails 应用里使用环境变量创建一个支付宝 API 客户端
76
+ ```ruby
77
+ @client = Alipay::Client.new(
78
+ url: ENV['ALIPAY_API'],
79
+ app_id: ENV['APP_ID'],
80
+ app_private_key: ENV['APP_PRIVATE_KEY'],
81
+ alipay_public_key: ENV['ALIPAY_PUBLIC_KEY']
82
+ )
83
+ ```
84
+
85
+ ## 创建支付订单
86
+
87
+ ### 电脑网站支付
88
+ #### API 接口
89
+ ```
90
+ alipay.trade.page.pay
91
+ ```
92
+ 这个 API 接口主要是用于在顾客在电脑网站下单并发起支付。
93
+
94
+ #### 客户端函数
95
+ ```ruby
96
+ Alipay::Client.page_execute_url
97
+ ```
98
+ 这个客户端函数调用后会返回一条重定向顾客用的支付地址。
99
+
100
+ #### 示例
101
+ ```ruby
102
+ @client.page_execute_url(
103
+ method: 'alipay.trade.page.pay',
104
+ return_url: 'https://mystore.com/orders/20160401000000/return',
105
+ notify_url: 'https://mystore.com/orders/20160401000000/notify',
106
+ biz_content: {
107
+ out_trade_no: '20160401000000',
108
+ product_code: 'FAST_INSTANT_TRADE_PAY',
109
+ total_amount: '0.01',
110
+ subject: 'Example #123'
111
+ }.to_json(ascii_only: true)
112
+ )
113
+ # => 'https://openapi.alipaydev.com/gateway.do?app_id=2016...'
114
+ ```
115
+
116
+ #### 值得注意的参数
117
+ * `return_url` 是提供给支付宝的同步返回地址。客户支付成功后,支付宝会使用 GET 请求将用户重定向到这个地址。这个一个*选填*参数,可不提供。
118
+ * `notify_url` 是提供给支付宝的异步返回地址。客户支付成功后,支付宝会以 POST 请求方式把交易信息发到这个地址上。这时一个*选填*参数。可不提供。
119
+ * `out_trade_no` 是你作为商户提供给支付宝的订单号。建议引用你应用内相应模型的 ID,并不能重复。
120
+ * `total_amount` 是支付订单的金额,精确到小数点后两位。例如金额 5,123.99 元的参数值应为 '5123.99'。
121
+
122
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/270/alipay.trade.page.pay/).
123
+
124
+
125
+ ### 手机网站支付
126
+ #### API 接口
127
+ ```
128
+ alipay.trade.wap.pay
129
+ ```
130
+ 这个 API 接口适用于顾客在手机网站环境下创建支付订单。如顾客手机内装有支付宝钱包,重定向到这个接口将会唤起手机上支付宝钱包。如顾客未安装支付宝应用,则将会重新向到移动版支付页面。
131
+
132
+ #### 客户端函数
133
+ ```ruby
134
+ Alipay::Client.page_execute_url
135
+ ```
136
+ 这个客户端函数调用后会返回一条重定向顾客用的支付地址。
137
+
138
+ #### 示例
139
+ ```ruby
140
+ @client.page_execute_url(
141
+ method: 'alipay.trade.wap.pay',
142
+ return_url: 'https://mystore.com/orders/20160401000000/return',
143
+ notify_url: 'https://mystore.com/orders/20160401000000/notify',
144
+ biz_content: {
145
+ out_trade_no: '20160401000000',
146
+ product_code: 'QUICK_WAP_WAY',
147
+ total_amount: '0.01',
148
+ subject: 'Example: 456'
149
+ quit_url: 'https://mystore.com/orders/20160401000000/'
150
+ }.to_json(ascii_only: true)
151
+ )
152
+ # => 'https://openapi.alipaydev.com/gateway.do?app_id=2016...'
153
+ ```
154
+ #### 值得注意的参数
155
+ * `quit_url` 顾客在移动版支付页面时,支付宝会以这个参数所提供的地址生成一个返回按钮。
156
+
157
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/203/107090/).
158
+
159
+ ### 扫码支付
160
+ #### API 接口
161
+ ```
162
+ alipay.trade.precreate
163
+ ```
164
+ 这个 API 接口在提供支付订单数据后,将会创建订单并返回一个生成二维码用的支付地址。支付成功后支付宝会向 `notify_url` 设定的异步通知地址发送交易数据。
165
+
166
+ #### 客户端函数
167
+ ```ruby
168
+ Alipay::Client.execute
169
+ ```
170
+
171
+ #### 示例
172
+ ```ruby
173
+ # 创建支付订单并取得订单信息
174
+ response = @client.execute(
175
+ method: 'alipay.trade.precreate',
176
+ notify_url: 'https://mystore.com/orders/20160401000000/notify',
177
+ biz_content: {
178
+ out_trade_no: '20160401000000',
179
+ total_amount: '50.00',
180
+ subject: 'QR Code Test'
181
+ }.to_json(ascii_only: true)
182
+ )
183
+ # => '{\"alipay_trade_precreate_response\":{\"code\"...'
184
+
185
+ # 提取二维码地址
186
+ qr_code = JSON.parse(response)["alipay_trade_precreate_response"]["qr_code"]
187
+ # => 'https://qr.alipay.com/abcdefggfedcba'
188
+ ```
189
+
190
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/api_1/alipay.trade.precreate).
191
+
192
+ ### 分期付款
193
+ #### API 接口
194
+ ```
195
+ alipay.trade.page.pay (电脑网站)
196
+ alipay.trade.wap.pay (手机网站)
197
+ alipay.trade.precreate (扫码支付)
198
+ ```
199
+
200
+ #### 客户端函数
201
+ ```ruby
202
+ Alipay::Client.page_execute_url (电脑网站 / 手机网站)
203
+ Alipay::Client.execute (扫码支付)
204
+ ```
205
+
206
+ #### 示例
207
+ 情景:顾客在商城网站上预先选择好分6期付款的方案。商城和支付宝创建支付订单时同时提供分期参数。
208
+
209
+ ```ruby
210
+ @client.page_execute_url(
211
+ method: 'alipay.trade.page.pay',
212
+ return_url: 'https://mystore.com/orders/20160401000000/return',
213
+ notify_url: 'https://mystore.com/orders/20160401000000/notify',
214
+ biz_content: {
215
+ out_trade_no: '20160401000000',
216
+ product_code: 'FAST_INSTANT_TRADE_PAY',
217
+ total_amount: '0.01',
218
+ subject: 'Example #654',
219
+ enable_pay_channels: 'balance,pcreditpayInstallment',
220
+ extend_params: {
221
+ hb_fq_num: '6'',
222
+ hb_fq_seller_percent: '0'
223
+ }
224
+ }.to_json(ascii_only: true)
225
+ )
226
+ ```
227
+ 情景:商城网站不提供分期选项,但允许客户在支付宝的支付过程中自行决定分期付款。
228
+ ```ruby
229
+ @client.page_execute_url(
230
+ method: 'alipay.trade.page.pay',
231
+ return_url: 'https://mystore.com/orders/20160401000000/return',
232
+ notify_url: 'https://mystore.com/orders/20160401000000/notify',
233
+ biz_content: {
234
+ out_trade_no: '20160401000000',
235
+ product_code: 'FAST_INSTANT_TRADE_PAY',
236
+ total_amount: '0.01',
237
+ subject: 'Example #654',
238
+ enable_pay_channels: 'balance,pcreditpayInstallment',
239
+ }.to_json(ascii_only: true)
240
+ )
241
+ ```
242
+ #### 值得注意的参数
243
+ * `enable_pay_channels` 这个参数指定用户可使用的付款渠道。 `pcreditpayInstallment` 是分期付款的参数值。可同时指定多个参数值。
244
+ * `hb_fq_num` 这个参数指定分期数. 有效的参数值为 `3`,`6`, 和 `12`。
245
+ * `hb_fq_seller_percent` 这个参数指定商户分担分期手续费的比例。有效参数值为`0`或`100`。
246
+
247
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/277/106748/).
248
+
249
+
250
+ ### 验证回调数据
251
+ #### 客户端函数
252
+ ```
253
+ Alipay::Client.verify?
254
+ ```
255
+ 这个客户端函数将会使用支付宝所提供的公钥来验证回调数据。
256
+
257
+ #### 示例
258
+ ```ruby
259
+ params = {
260
+ out_trade_no: '20160401000000',
261
+ trade_status: 'TRADE_SUCCESS'
262
+ sign_type: 'RSA2',
263
+ sign: '...'
264
+ }
265
+ @client.verify?(params)
266
+ # => true / false
267
+ ```
268
+
269
+ ##### 验证 GET return_url 同步通知
270
+ 支付宝会在顾客支付成功后,将客户以 GET 请求的方式重定向顾客到你指定的 `return_url` 地址。以下将简单地示范如何在你应用的 Controller 里验证回调数据。
271
+
272
+ ```ruby
273
+ @client.verify?(request.query_parameters)
274
+ # => true / false
275
+ ```
276
+
277
+ ##### 验证 POST notify_url 异步通知
278
+ 支付宝在顾客支付成功后,会向你所指定的 `notify_url` 以 POST 请求方式发送异步通知。你的应用对应的Controller需以纯文本方式返回 `success` 这7个字符。否则支付宝会继续尝试发送异步通知。
279
+
280
+ ```ruby
281
+ if @client.verify?(request.request_parameters)
282
+ render plain: 'success'
283
+ end
284
+ ```
285
+
286
+ ### 查询支付状态
287
+ #### API 接口
288
+ ```
289
+ alipay.trade.query
290
+ ```
291
+ 这个 API 接口适用于在未接收到同步/异步通知的情况下查询订单支付状态。这个接口同时也适用于查询未设定同步/异步通知地址的订单。
292
+
293
+ #### 客户端函数
294
+ ```ruby
295
+ Alipay::Client.execute
296
+ ```
297
+
298
+ #### 示例
299
+ ```ruby
300
+ response = @client.execute(
301
+ method: 'alipay.trade.query',
302
+ biz_content: {
303
+ trade_no: '2013112611001004680073956707',
304
+ }.to_json(ascii_only: true)
305
+ )
306
+ # => '{\"alipay_trade_query_response\":{\"code\"...'
307
+
308
+ # Get payment status
309
+ result_status = JSON.parse(response)["alipay_trade_query_response"]["trade_status"]
310
+ # => 'TRADE_SUCCESS'
311
+ ```
312
+
313
+ #### 值得注意的参数
314
+ * `trade_no` 是创建支付订单后,支付宝返回的交易号。如未取得交易号,可以使用创建订单时所传入的商户订单号来代替。
315
+
316
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/api_1/alipay.trade.query).
317
+
318
+ ## 终止支付订单
319
+ ### 关闭交易
320
+ #### API 接口
321
+ ```
322
+ alipay.trade.close
323
+ ```
324
+ 这个 API 接口适用于用户在一定时间内未支付,但未在支付宝系统内超时的情况下对未付款的建议进行关闭。
325
+
326
+ #### 客户端函数
327
+ ```ruby
328
+ Alipay::Client.execute
329
+ ```
330
+
331
+ #### 示例
332
+ ```ruby
333
+ response = @client.execute(
334
+ method: 'alipay.trade.close',
335
+ notify_url: 'https://mystore.com/orders/20160401000000/notify',
336
+ biz_content: {
337
+ trade_no: '2013112611001004680073956707',
338
+ }.to_json(ascii_only: true)
339
+ )
340
+ # => '{\"alipay_trade_close_response\":{\"code\"...'
341
+
342
+ # 取得请求结果代码
343
+ result_code = JSON.parse(response)["alipay_trade_close_response"]["code"]
344
+ # => '10000'
345
+ ```
346
+
347
+ #### 值得注意的参数
348
+ * `trade_no` 是创建支付订单后,支付宝返回的交易号。如未取得交易号,可以使用创建订单时所传入的商户订单号来代替。
349
+
350
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/api_1/alipay.trade.close).
351
+
352
+ ### 撤销交易
353
+ #### API 接口
354
+ ```
355
+ alipay.trade.cancel
356
+ ```
357
+ 这个 API 接口适用于支付交易返回失败或支付系统超时的情况下撤销交易订单。如果顾客已成功付款,款项会以原渠道退回给顾客。并返回 `action` 值 `refund`。如客户尚未付款,订单会被关闭并返回 `action` 值 `close`。
358
+
359
+ #### 客户端函数
360
+ ```ruby
361
+ Alipay::Client.execute
362
+ ```
363
+
364
+ #### 示例
365
+ ```ruby
366
+ response = @client.execute(
367
+ method: 'alipay.trade.cancel',
368
+ biz_content: {
369
+ out_trade_no: '20160401000000',
370
+ }.to_json(ascii_only: true)
371
+ )
372
+ # => '{\"alipay_trade_cancel_response\":{\"code\"...'
373
+
374
+ # 取得撤销结果
375
+ result_action = JSON.parse(response)["alipay_trade_cancel_response"]["action"]
376
+ # => 'close'
377
+ ```
378
+
379
+ #### 值得注意的参数
380
+ * `trade_no` 是创建支付订单后,支付宝返回的交易号。如未取得交易号,可以使用创建订单时所传入的商户订单号来代替。
381
+
382
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/api_1/alipay.trade.cancel/).
383
+
384
+ ## 交易退款
385
+
386
+ ### 发起退款
387
+ #### API 接口
388
+ ```
389
+ alipay.trade.refund
390
+ ```
391
+ 这个 API 接口适用于对已成功的交易订单发起退款。退款可拆分成多笔操作。如支付订单已超支付宝的退款期限,退款请求会失败。
392
+
393
+ #### 客户端函数
394
+ ```ruby
395
+ Alipay::Client.execute
396
+ ```
397
+
398
+ #### 示例
399
+ 情景:顾客请求总额为 210.85 元的订单退款 10.12 元。
400
+ ```ruby
401
+ response = @client.execute(
402
+ method: 'alipay.trade.refund',
403
+ biz_content: {
404
+ out_trade_no: '6c50789a0610',
405
+ out_request_no: '6c50789a0610-1',
406
+ refund_amount: '10.12'
407
+ }.to_json(ascii_only: true)
408
+ )
409
+ # => '{\"alipay_trade_refund_response\":{\"code\"...'
410
+
411
+ # 取得结果
412
+ result_code = JSON.parse(response)["alipay_trade_refund_response"]["code"]
413
+ # => '10000'
414
+
415
+ result_fund_change = JSON.parse(response)["alipay_trade_refund_response"]["fund_change"]
416
+ # => 'Y'
417
+ ```
418
+
419
+ #### 值得注意的参数
420
+ * `out_request_no` 是 *条件可选* 参数. 如果你打算以同一张支付订单发起分多次退款,这则是*必选*参数。如你计划对支付订单进行一次性全额退款,这则是*可选*参数。
421
+ * `refund_amount` 是你退款单的金额。该金额可小于支付订单金额。但如之前以同一支付订单已产生退款,所有退款单的总额不能超出支付订单的总额。
422
+
423
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/api_1/alipay.trade.refund/).
424
+
425
+ ### 查询退款状态
426
+ #### API 接口
427
+ ```
428
+ alipay.trade.fastpay.refund.query
429
+ ```
430
+ 这个 API 接口适用于查询退款状态和一些退款的参数。
431
+
432
+ #### 客户端函数
433
+ ```ruby
434
+ Alipay::Client.execute
435
+ ```
436
+
437
+ #### 示例
438
+ ```ruby
439
+ response = @client.execute(
440
+ method: 'alipay.trade.fastpay.refund.query',
441
+ biz_content: {
442
+ out_trade_no: '6c50789a0610',
443
+ out_request_no: '6c50789a0610-1'
444
+ }.to_json(ascii_only: true)
445
+ )
446
+ # => '{\"alipay_trade_fastpay_refund_query_response\":{\"code\"...'
447
+
448
+ # 取得退款金额
449
+ result_refund_amount = JSON.parse(response)["alipay_trade_fastpay_refund_query_response"]["refund_amount"]
450
+ # => '10.12'
451
+ ```
452
+
453
+ #### 值得注意的参数
454
+ * `out_request_no` 是你创建退款单时所提供给支付宝的单号。如支付订单仅有一笔退款,则可使用 `out_trade_no` 来代替。
455
+
456
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/api_1/alipay.trade.fastpay.refund.query/).
457
+
458
+
459
+ ## 转帐
460
+ ### 转帐到顾客支付宝账户
461
+ #### API 接口
462
+ ```
463
+ alipay.fund.trans.toaccount.transfer
464
+ ```
465
+ 这个 API 接口适用于从你的商户支付宝账户转帐到顾客支付宝帐号。
466
+
467
+ #### 客户端函数
468
+ ```
469
+ Alipay::Client.execute
470
+ ```
471
+
472
+ #### 示例
473
+ ```ruby
474
+ response = @client.execute(
475
+ method: 'alipay.fund.trans.toaccount.transfer',
476
+ biz_content: {
477
+ out_biz_no: '3142321423432',
478
+ payee_type: 'ALIPAY_LOGONID',
479
+ payee_account: 'customer@example.com',
480
+ amount: '12.23'
481
+ }.to_json(ascii_only: true)
482
+ )
483
+ # => '{\"alipay_fund_trans_toaccount_transfer_response\":{\"code\"...'
484
+
485
+ # 取得转帐ID
486
+ result_order_id = JSON.parse(response)["alipay_fund_trans_toaccount_transfer_response"]["order_id"]
487
+ # => '20160627110070001502260006780837'
488
+ ```
489
+
490
+ #### 值得注意的参数
491
+ * `out_biz_no` 是你提供给支付宝的唯一转帐ID
492
+ * `payee_type` 是用于识别 `payee_account` 提供的账户类型。 有效值为 `ALIPAY_USERID` ,适用于提供开头为 `2088` 的支付宝用户号。另一有效值 `ALIPAY_LOGONID` 适用于以用户邮箱,手机,和登录号来识别。
493
+ * `payee_account` 是用户的支付宝ID,邮箱地址,登录号,和手机号码。这个参数必须匹配所提供 `payee_type` 值。
494
+ * `amount` 是转帐金额,精确到小数点后两位数。 (例如: ¥123.50 值为 `123.50`)
495
+
496
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/api_28/alipay.fund.trans.toaccount.transfer).
497
+
498
+ ### 查询转帐状态
499
+ #### API 接口
500
+ ```
501
+ alipay.fund.trans.order.query
502
+ ```
503
+ 这个 API 接口适用于查询转帐状态
504
+
505
+ #### 客户端函数
506
+ ```
507
+ Alipay::Client.execute
508
+ ```
509
+
510
+ #### 示例
511
+ ```ruby
512
+ response = @client.execute(
513
+ method: 'alipay.fund.trans.order.query',
514
+ biz_content: {
515
+ out_biz_no: '3142321423432',
516
+ }.to_json(ascii_only: true)
517
+ )
518
+ # => '{\"alipay_fund_trans_order_query_response\":{\"code\"...'
519
+
520
+ # 取得转帐状态
521
+ refund_status = JSON.parse(response)["alipay_fund_trans_order_query_response"]["status"]
522
+ # => 'SUCCESS'
523
+
524
+ # 取得预计到帐时间
525
+ refund_status = JSON.parse(response)["alipay_fund_trans_order_query_response"]["arrival_time_end"]
526
+ # => '2018-01-01 08:08:08'
527
+ ```
528
+
529
+ #### 值得注意的参数
530
+ * 'order_id' 是创建转帐交易时所返回的ID。如没有取得该ID,则可使用 `out_biz_no` 来代替。
531
+
532
+ > 如需 API 接口的完整参数列表,请参考官方的 [API 文档](https://docs.open.alipay.com/api_28/alipay.fund.trans.order.query/).