php - Does Stripe record a payee's IP address? -


i'm trying troubleshoot stripe payment issue on client's wordpress website running event espresso plugin. reason, payment went through on stripe appears payment notification didn't make client's website. we've tested , can't replicate issue. our hosting provider have asked if can provide ip address of successful payment, can't see mention of recorded ip address in stripe logs. know if record of payee's ip address accessible anywhere?

any hugely appreciated!

dave.

doesn't it. doing sample curl test api:

{   "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 test@example.com",   "dispute": null,   "metadata": {},   "statement_description": null } 

the ip doesn't seem logged. since using php, fetch ip using $_server['remote_addr']


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -