簡體   English   中英

PHP curl / json POST問題

[英]Issue with PHP curl / json POST

我遇到了一個問題,試圖從表單內向CHARGify API日志付款發出POST。

但是,由於某種原因,由於實際上返回了錯誤,因此POST實際上是作為GET發送的。

有人可以針對我可能做錯的事情提供任何建議嗎? Postman可以很好地發送以JSON為主體的POST,但我無法從PHP使其正常工作。

(注意: <urlmaskedforprivacy>顯然不在我的實際代碼中)

    //find invoice id # using invoice number search form
    $invoiceNumber = fRequest::get('invoicenumber');
    $json = file_get_contents('https://<maskedforprivacy>.chargify.com/invoices.json?number=' . $invoiceNumber);
    $returnedInvData = fJSON::decode($json);
    $invoiceId = $returnedInvData[0]->invoice->id;


    // grab form data as payment info to send to chargify
    $paymentAmount = fRequest::Get('amount');
    $memo = fRequest::Get('memo');

    if ((isset($invoiceNumber,$paymentAmount,$memo))) {

    $url = 'https://<maskedforprivacy>.chargify.com/subscriptions/' . $invoiceId . '/payments.json';

    $params = array(
                      'payment' => array(
                           'amount'   => $paymentAmount,
                           'memo'    => (string)$memo
                      ),
                );

    // encode as json               
    $content = FJSON::encode($params);


    // send to chargify
    $curl = curl_init($url);
    curl_setopt($curl, CURLOPT_HEADER, false);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HTTPHEADER,
            array("Content-type: application/json"));
    curl_setopt($curl, CURLOPT_POST, true);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $content);

    $json_response = curl_exec($curl);

    $status = curl_getinfo($curl, CURLINFO_HTTP_CODE);

    if ( $status != 201 ) {
        die("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl));
    }


    curl_close($curl);

    $response = json_decode($json_response, true);      

    }

我已經使用了這一代碼,但是它返回401錯誤並要求基本身份驗證。 在json_response變量中。 可能您錯過了嗎?

$paymentAmount = 10;
    $memo = 'test';



    $url = 'https://test.chargify.com/subscriptions/1/payments.json';

    $params = array(
                      'payment' => array(
                           'amount'   => $paymentAmount,
                           'memo'    => (string)$memo
                      ),
                );

    // encode as json
    $content = json_encode($params);


    // send to chargify
    $curl = curl_init($url);

    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HTTPHEADER,
            array("Content-type: application/json"));
    curl_setopt($curl, CURLOPT_POST, true);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $content);

    $json_response = curl_exec($curl);

    $status = curl_getinfo($curl, CURLINFO_HTTP_CODE);

    if ( $status != 201 ) {
        die("Error: call to URL $url failed with status $status, response $json_response, curl_error " . curl_error($curl) . ", curl_errno " . curl_errno($curl));
    }


    curl_close($curl);

    $response = json_decode($json_response, true);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM