When There is any update regarding issues in My Project I need to send a response to my API. Does Webhook support to send response to code but not the website If not is there any way to do ?
Hello,
I am not sure what you mean by "send a response to code". You would need to develop a web application with a rest endpoint, which would accept a webhook call. In this case a webhook can send a request to your application.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Django is a framework to create a web server, then if you create a rest endpoint, which would accept rest calls, then you use a webhook to send a request.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To create a webhook :
My url is http:/n.n.n.n:8000. But WebHooks can only use standard http and https ports (80 or 443). Is there any other way ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
In this case I can see two options:
1. You write your own plugin for Jira with a listener and call your rest endpoint from this plugin
2. You put a proxy for you rest endpoint. This proxy should work on 80 or 443 and this proxy will redirect all requests to your port.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.