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

首先,我会说我已经成功获得了access_token,我这样做没有问题。问题是,当我尝试使用Send Endpoint(https://www.dwolla.com/developers/endpoints/accountapi/send)时,基本上是尝试将钱发送到and帐户。我的确切问题是,我永远无法获得成功的回应。仅错误或错误消息响应。

因此,在索引页面上,我具有“向您的帐户添加资金”链接。用户将单击该链接,然后将他们带到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));
        }

?>

例如,我收到这样的消息

最佳答案

您要进行的操作是获取请求,而Dwolla文档将其称为发布请求。

更好的方法是使用内置方法来调用其php库,以进行调用。这是一个用于进行静态调用的标准库,比编写上面代码片段中的编写方式好得多。

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

10-08 04:56