2014-04-14 2 views
1

Event Espresso 플러그인을 실행중인 클라이언트의 Wordpress 웹 사이트에서 Stripe 결제 문제를 해결하려고합니다. 어떤 이유로 결제가 Stripe에서 성공적으로 완료되었지만 지불 통지로 고객의 웹 사이트로 되돌아 가지 못했습니다. 테스트를 통해 문제를 재현 할 수 없습니다. 호스팅 제공 업체가 성공적인 지불의 IP 주소를 제공 할 수 있는지 물어 보았지만 스트라이프 로그에 기록 된 IP 주소에 대한 언급이 없습니다. 수취인의 IP 주소에 대한 기록이 어디에서나 접근 할 수 있는지 아는 사람 있습니까?스트라이프는 수취인의 IP 주소를 기록합니까?

어떤 도움도 대단히입니다.

데이브.

+0

[항상 Stripe에 문의 할 수 있습니다.] (https://support.stripe.com/email) – h2ooooooo

답변

2

보이지 않습니다. 자신의 API를에서 자신의 샘플 curl 테스트를 수행 :

{ 
    "id": "ch_103qsK2eZvKYlo2CxP4IaIl9", 
    "object": "charge", 
    "created": 1397483829, 
    "livemode": false, 
    "paid": true, 
    "amount": 400, 
    "currency": "usd", 
    "refunded": false, 
    "card": { 
    "id": "card_103qsK2eZvKYlo2CqxXRJvwq", 
    "object": "card", 
    "last4": "4242", 
    "type": "Visa", 
    "exp_month": 12, 
    "exp_year": 2014, 
    "fingerprint": "Xt5EWLLDS7FJjR1c", 
    "customer": null, 
    "country": "US", 
    "name": null, 
    "address_line1": null, 
    "address_line2": null, 
    "address_city": null, 
    "address_state": null, 
    "address_zip": null, 
    "address_country": null, 
    "cvc_check": "pass", 
    "address_line1_check": null, 
    "address_zip_check": null 
    }, 
    "captured": true, 
    "refunds": [], 
    "balance_transaction": "txn_103qsK2eZvKYlo2Cxe0IYgyp", 
    "failure_message": null, 
    "failure_code": null, 
    "amount_refunded": 0, 
    "customer": null, 
    "invoice": null, 
    "description": "Charge for [email protected]", 
    "dispute": null, 
    "metadata": {}, 
    "statement_description": null 
} 

는 IP가 기록하지 않는 것 같습니다. PHP를 사용하고 있으므로 $_SERVER['REMOTE_ADDR']

+0

감사합니다. Sircapsalot! 나는 그렇게 생각하지 않았다. –

+0

그들은 사기 점수로 IP 주소를 사용하기 때문에 아마 그것을 저장하지만 공개하지는 않습니다. – Jimothy