dwolla

Integrating Dwolla with PHP with their API

别说谁变了你拦得住时间么 提交于 2019-12-23 12:26:24
问题 Foreword: Okay I've used APIs in the past such as TwitterAPI but I always used a library and some documentation to assist me with connections, and retrieving tokens. I have a basic understanding of how API's work. Okay so I've tried multiple ways of requesting the dwolla API with PHP I've tried making a <form action="https://www.dwolla.com/payment/pay" method="post"> <input type="hidden" name="key" value="soMeVerYLongAcsiiKey"/> <input type="hidden" name="secret" value=

Invalid Total error with Dwolla Server to Server checkout method

天涯浪子 提交于 2019-12-11 18:27:47
问题 I'm following the docs for Dwolla for the Server to Server method, and making a post request to the URL in the docs with the following json data in the body: { "Key":"Fake_Key", "Secret":"Fake_Secret", "PurchaseOrder":{ "DestinationId":"Fake_Destination_id", "Discount":0, "OrderItems":[ { "Description":"a product", "Name":"lol", "Price":19.99, "Quantity":20 } ] }, "Shipping":0, "Tax":0, "Total":399.8, "Test":true } Unfortunately, while the data seems valid to me, their server is responding

Dwolla transaction ids relationship

不想你离开。 提交于 2019-12-06 15:55:42
问题 I just had a transaction that completed. The transaction Id was reported through the webhook as a an integer XXXX132. When I look at the Dwolla site of the recipient, on the receiving side the id is XXXX131 and the .25c fee has the id XXXX130. Can I assert that for any transaction the ids are numeric and the relationships are: Fee id: N Receivers's id: N + 1 Sender's id: N + 2 If not, how do I determine all the ids since the web hook only reports one of them. 回答1: You are correct. We create

Dwolla transaction ids relationship

浪尽此生 提交于 2019-12-04 21:20:02
I just had a transaction that completed. The transaction Id was reported through the webhook as a an integer XXXX132. When I look at the Dwolla site of the recipient, on the receiving side the id is XXXX131 and the .25c fee has the id XXXX130. Can I assert that for any transaction the ids are numeric and the relationships are: Fee id: N Receivers's id: N + 1 Sender's id: N + 2 If not, how do I determine all the ids since the web hook only reports one of them. You are correct. We create transactions in the following order: Dwolla fee if necessary, facilitator fee if necessary, receiver, sender.