Use ports other than 80/443 for the event notification url (webhook)

和自甴很熟 提交于 2019-12-13 05:51:54

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!