问题
Is it possible to use other ports than 80(http) and 443(https) for the event notification url when setting up a webhook? Like this:
EventNotification eventNotification = new EventNotification();
eventNotification.Url = "http://example.com:82/Test.asmx/ReceivingMethod";
I can't tell if my server is blocking the traffic or if DocuSign can't use that url.
I am using Docusign C# SDK.
回答1:
You can use the service ngrok to create a public SSL 443 service point that is tunneled to your server's port 82.
Updated Dec, 2018:
Currently, you can only use TLS v1.1 or greater in demo and production. You can also use other destination ports, but they must all use https. Ports supported: 443, 1443, 2443, 3443, 4443, 5443, 6443, 7443, 8443, or 9443
回答2:
You can use 80/443 in DEMO. You must use 443 in PROD.
来源:https://stackoverflow.com/questions/37294334/use-ports-other-than-80-443-for-the-event-notification-url-webhook