7

大家好,我又回来了,在我的上一篇文章中,我试图使用 SOAP api(Integrating Dwolla with PHP with their API),但我发现 SOAP API 已被弃用,显然 Dwolla 有更有效的方式,例如 REST/ oAuth2.0 这就是我今天在这里询问如何使用其余 API 的原因,因为它已经快 2 周了,我真的很想学习这个。

首先,我会说我已经成功地获得了一个 access_token,我这样做没有问题。问题是,当我尝试使用发送端点(https://www.dwolla.com/developers/endpoints/accountapi/send)时,基本上是在尝试向账户汇款。我的确切问题是我永远无法得到成功的回应;只有错误或错误消息响应。

因此,在索引页面上,我有“将资金添加到您的帐户”链接。用户将单击该链接,它会将他们带到 Dwolla 页面,该页面将接受他们登录到他们的 Dwolla 帐户,然后接受网站要求的权限。用户按下“接受”后,它将重定向到我选择的选定 URL 并发送回 access_token 以用于授权目的。这是我的代码(这也是 Dwolla 重定向并发送 access_token 的页面)

<?php
//Define variables
    $key            = 'redacted';
    $secret         = 'redacted';
    $dwolla_client_id   = urlencode($key);
    $dwolla_secret_key  = urlencode($secret);
$code = urlencode($_GET["code"]);
//get token
    $retireve_token = file_get_contents("https://www.dwolla.com/oauth/v2/token?client_id=".$dwolla_client_id."&client_secret=".$dwolla_secret_key."&grant_type=authorization_code&redirect_uri=http://localhost/purchase_order.php&code=".$code);


    $decoded_json = json_decode($retireve_token, true);


        var_dump($decoded_json);
        if($decoded_json["access_token"]){
                    $arr = '{
                            "oauth_token": "'.$decoded_json["access_token"].'",
                            "fundsSource": "balance",
                            "pin": "1111",
                            "notes": "Payment for services rendered",
                            "amount": 1.01,
                            "destinationId": "812-111-1111",
                            "assumeCosts": false,
                            "facilitatorAmount": 0,
                            "destinationType": "dwolla"
                    }';
                    $opts = array('http'=>array('method'=>"POST",'content'=> $arr, 'header' => 'Content-Type: application/json'));

                    $ctx = stream_context_create($opts);
            $send_request = file_get_contents('https://www.dwolla.com/oauth/rest/accountapi/send', false, $ctx);

            var_dump(json_decode($send_request));
        }

?>

例如,我收到这样的消息

array(1) { ["access_token"]=> string(50) "redacted" } 警告:file_get_contents( https://www.dwolla.com/oauth/rest/accountapi/send ):打开流失败:HTTP 请求失败的!HTTP/1.1 503 Service Unavailable in /home/swiftbitcoins/purchase_order.php on line 47 NULL

4

1 回答 1

0

您要尝试的是获取请求,而 Dwolla 文档将此称为发布请求。

你可以做的更好的是使用他们的 php 库与内置方法进行调用。这是一个用于进行安静调用的标准库,并且比您在上面的代码片段中编写的方式要好得多。

https://github.com/Dwolla/dwolla-php

于 2015-08-03T08:56:55.247 回答