I've connected JIRA in my web app using oauth (have access/refresh tokens) - I'm registering webhooks programatically using this format:
{
"name": "Test",
"url": "https://xyz.com/webhooks/jira",
"webhooks": [
{
"jqlFilter": "project = TESTPROJECT",
"events": ["jira:issue_created", "jira:issue_updated"]
}
],
"excludeBody": false,
"secret": "abc"
}
I followed this link to write register logic (https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-webhooks/#api-rest-api-3-webhook-post). The webhook registers and I get events without any signature.
I'm not getting any header signature when I receive event. Kindly guide how to achieve this?
Thanks
Hello, Good day. Noticed you have .com URL whether this is Jira cloud or Datacenter setup?. Thanks!
Hi, .com url is the url on my website where I will receive the webhooks. I'm using Jira Cloud (oAuth App)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks. I would like to know if you have already tried the steps suggested in the following link?
https://support.atlassian.com/jira/kb/how-to-use-oauth20-in-postman-client-for-jira-cloud-apis/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.