paypal - Can a HTTP server receive HTTPS request (node.js)? -


i reading paypal documentation how implement ipn server receive payment notification (from paypal post requests), noticed requests in encrypted https, , implement server non-secured http. there issue if this? can use library use https on non-secured server?

you cannot receive https request http server. won't connect. starters, won't on right port default , if try force correct port, https request won't connect http server.

instead, can use https server in node.js app explained here in nodejs https module.

can http server receive https request (node.js)?

no, cannot.

is there issue if this?

yes, not connect.

can use library use https on non-secured server?

no, cannot. https connections not connect http server.


all payment related stuff should done on secured https connection if change client use http instead of https, should not and, i'd guess paypal prevents either client library or license because last thing want people implementing paypal payments on insecure connections.


Comments

Popular posts from this blog

ubuntu - PHP script to find files of certain extensions in a directory, returns populated array when run in browser, but empty array when run from terminal -

php - How can i create a user dashboard -

javascript - How to detect toggling of the fullscreen-toolbar in jQuery Mobile? -