Questions tagged [atlassian-connect]

A multi-language framework for writing out-of-process add-ons for Atlassian products such as JIRA, Confluence and HipChat. An add-on could be an integration with another existing service, new features for the Atlassian application, or a new product that runs within the Atlassian application. Connect add-ons are web applications that operate remotely over HTTP and can be written with any programming language and web framework.

Connect add-ons have three major capabilities:

  • Insert content in certain defined places in the Atlassian application's UI.
  • Make calls to the Atlassian application's REST API.
  • Listen and respond to WebHooks fired by the Atlassian application.

Documentation: https://developer.atlassian.com/static/connect/docs/

Cookbooks: https://developer.atlassian.com/static/connect/docs/latest/concepts/javascript-api.html#cookbook

22 questions
4
votes
2 answers

Is there is any way to get the selected columns after saving the filter view in Jira?

I am new to Jira and I created jira custom app using Atlassian connect express.     I used api from https://developer.atlassian.com/cloud/jira/platform/rest/v3/intro/ Atlassian components from https://atlassian.design/components/ In my app there is…
3
votes
2 answers

Error after dependency of Redis (spring-boot-starter-data-redis) added in spring-boot

When I add below dependency to pom.xml org.springframework.boot spring-boot-starter-data-redis Below error comes 2018-05-31 12:02:38.217 INFO 1416 ---…
2
votes
0 answers

Bitbucket addon - jwt on redirect

We are developing a BitBucket app and found out that in the PostInstallRedirect we also get the JWT as part of the querystring and we think this is a potential security issue, furthermore - we don’t use it as we already authenticate the jwt in the…
Mithir
  • 2,355
  • 2
  • 25
  • 37
2
votes
0 answers

Is it possible to use application level middleware in express router?

I've been playing around with setting up a basic atlassian-connect-express (ACE) application, and have modified the starter code provided by the ACE package to be suitable for serverless deployment. One of the problems I faced after doing this was…
P.Ackland
  • 53
  • 4
2
votes
0 answers

Atlassian Connect - Set entity properties in Jira/Cloud

I develop an AC/SpringBoot Jira plugin which needs to store properties in the host application. Atlassian provides Hosted Data Storage which I like to use. I ran a test via Firefox RESTClient to play around with this feature. When issuing a GET…
2
votes
3 answers

Atlassian Connect Express: Credentials rejected at connect-ace.atlassian.net

I'm evaluating atlassian-connect-express and just created an app boilerplate with "atlassian-connect new", and then deployed it via ngrok to my Jira dev account. That works fine, but when I try to use the file "credentials.json" with my account…
Michael
  • 6,823
  • 11
  • 54
  • 84
2
votes
2 answers

Add-on is not responding. Wait or cancel?

I am trying to make a simple HelloWorld add-on using atlassian-connect-play-java : My Controller : package controllers; import views.html.*; import com.atlassian.connect.play.java.controllers.AcController; import…
2
votes
1 answer

Atlassian Confluence Webhook not calling Play! method using Atlassian Connect Plugin

I'm trying to use a webhook (login event) to make a call to my Play! app. I need to pass the user and IP address of that user to the method, but I get this error: [httpclient-callbacks:thread-37] …
user1825866
  • 290
  • 1
  • 2
  • 9
1
vote
0 answers

User not authorised for certain endpoint on rest API - Error: "Client must be authenticated to access this resource."

I'm using Atlassian-Connect-Express to create a Jira addon and encountered an issue where I get an error message: "Client must be authenticated to access this resource." when using the function asUserByAccountId. app.put('/getJiraFieldData', …
tzach
  • 35
  • 3
1
vote
0 answers

How to fix: AtlassianHostUser is null in Jira cloud plugin

How to fix: AtlassianHostUser is null in Jira cloud plugin. My controller looks like this @Controller @IgnoreJwt public class MainController { private final StorageService storageService; @Autowired public MainController(StorageService…
MrKumar
  • 476
  • 3
  • 10
1
vote
1 answer

Atlassian-connect: Error on 'installed' event

I'm trying to run example Jira add-on. I have created credentials.json file and have run npm i and node app.js. But I have problems with installed event. Here is nodejs log: Watching atlassian-connect.json for changes Add-on server running at…
Gleb
  • 1,312
  • 3
  • 18
  • 36
1
vote
1 answer

Referencing Custom Issue Field to pass in as a Context Parameter Atlassian-Connect

I'm trying to pass in the value of a jiraIssueField I define as a module into a webPanel item as a context parameter. I've defined modules here: I reference the custom field as addonkey__customfieldkey (separated by double underscore) in…
Asjad Athick
  • 143
  • 3
  • 10
0
votes
1 answer

Unable to install ACE Jira app from Heroku

I've got my Atlassian Connect app set up using the instructions at the ACE BitBucket site, and I've been manually deploying my app to development instances using ngrok tunnels as usual. The app works fine, all pages show properly and the application…
A. Vance
  • 33
  • 1
  • 5
0
votes
1 answer

Redis cache not working with atlassian-connect-spring-boot-jpa-starter

I am using sample from https://github.com/spring-projects/spring-boot/tree/master/spring-boot-samples/spring-boot-sample-cache Sample project work as it is when i run using mvn spring-boot:run -Predis However when i add dependencies
Shiv
  • 199
  • 5
  • 16
0
votes
1 answer

What files to package Atlassian Connect Express Confluence Macro

I am trying to find what files to upload and where for my web confluence plugin. I know the atlassian-connect.json needs to be uploaded to an https:// location. Do I upload that project root direct in the same location as well as all the folders,…
Tim Nuwin
  • 2,775
  • 2
  • 29
  • 63
1
2