使用agelleye创建paypal发票:错误520002

时间:2014-08-22 11:50:39

标签: php codeigniter paypal

我收到错误,520002 - 来自PayPal的内部错误,当我尝试创建并发送发票时。 我可以用ci-merchant来做,但不能和angelleye一起做(对于codeigniter)。当我尝试创建它时,我得到了这个错误:

<?xml version="1.0" encoding="utf-8"?>
<CreateAndSendInvoiceRequest xmlns="http://svcs.paypal.com/types/ap">
    <requestEnvelope xmlns="">
        <detailLevel>ReturnAll</detailLevel>
        <errorLanguage>en_US</errorLanguage>
    </requestEnvelope>
    <invoice xmlns="">
        <merchantEmail xmlns="">lalanzaos@gmail.com</merchantEmail>
        <payerEmail xmlns="">oscar73@gmail.com</payerEmail>
        <itemList xmlns="">
            <item xmlns="">
                <name xmlns="">Clases de idiomas (Español)</name>
                <description xmlns="">Dia/s: 2014-08-08</description>
                <date xmlns="">2014-08-22</date>
                <quantity xmlns="">1</quantity><unitPrice xmlns="">11.00</unitPrice>
            </item>
        </itemList>
        <currencyCode xmlns="">USD</currencyCode>
        <invoiceDate xmlns="">2014-08-22</invoiceDate>
        <dueDate xmlns="">2014-08-22</dueDate>
        <referrerCode xmlns="">AngellEYE_PHPClass</referrerCode>
    </invoice>
</CreateAndSendInvoiceRequest>




<?xml version='1.0' encoding='UTF-8'?>
<ns3:FaultMessage xmlns:ns3="http://svcs.paypal.com/types/common" xmlns:ns2="http://svcs.paypal.com/types/pt">
    <responseEnvelope>
        <timestamp>2014-08-22T04:12:25.170-07:00</timestamp>
        <ack>Failure</ack>
        <correlationId>87f10d36a1e29</correlationId>
        <build>11737381</build>
    </responseEnvelope>
    <error>
        <errorId>520002</errorId>
        <domain>PLATFORM</domain>
        <subdomain>Application</subdomain>
        <severity>Error</severity>
        <category>Application</category>
        <message>Internal Error</message>
    </error>
</ns3:FaultMessage>

1 个答案:

答案 0 :(得分:0)

似乎没有正确传递日期格式。它应该如下所示:

<invoiceDate xmlns="">2014-08-23T22:33:35</invoiceDate>

<dueDate xmlns="">2014-08-24T22:33:35</dueDate>

这种格式应该可以正常工作。