id
stringlengths
32
32
text
stringlengths
0
895k
name
stringlengths
0
33k
domain
stringlengths
5
44
bucket
stringclasses
19 values
answers
list
3cdcf31a1c5b51e8f3bc738d3ec6a78f
hi, we are developing plugin for cloud jira software. we do our development with “spring boot”. we can test it through ngrok in development processes. however, we cannot find a clear solution about which technology we should use when importing our application to prod. in our research, we found the…
how can i deploy my cloud app to prod
atlassian.com
2021.31
[ { "text": "yes, you can safely use heroku for prod versions of your app. a lot of atlassian marketplace partners are using heroku. i think it is safe to say that (ten)thousands of jira instances have at least one app installed that runs on heroku, with hundred-thousands/millions of active users.\n\nnow regarding…", "name": "", "is_accepted": true } ]
cbb4301f8da998e5c92a6f5af47ace2d
hello, i am writing a custom app that uses jira’s rest api to search for issues. i am able to search after issues using a jql query, but i can’t find a way to validate the query like the searchbar in jira itself can do. do you know a way i can accomplish that in my custom app? thanks!
javascript jql validation
atlassian.com
2021.17
[ { "text": "[@carlo.noelle](/u/carlo.noelle),\n\ni think you are looking for a jql auto-complete feature and i’m not aware how to implement it.\n\nif you would only want to validate if is this a valid jql you can check for the\n\n[search rest aṕi](https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-api-3-search-get) response code. if the it return 400 it means that the jql query is invalid and you can dis…", "name": "", "is_accepted": true } ]
485fd9ee5fa42a21b8e9ffdeede632e4
hello team, i am currently working on upgrading jira version to 8.6.0 and as part of this process i am working on upgrading a custom plugin. while upgrading this plugin which has reference to org.springframework.ldap.core.ldaptemplate i observed a classcastexception as below caused by: java.lang.…
classcastexception due to apache felix framework 5.6.12
atlassian.com
2020.10
[ { "text": "hi team,\n\ni was able to resolve this issue by excluding the package org.springframework.core.convert.support as below\n\n<import-package>\n\n......\n\n....\n\n!org.springframework.core.convert.support,\n\n*;resolution:=optional\n\n</import-package>\n\nthanks & regar…", "name": "", "is_accepted": true } ]
e98e04b5198aaff6f98ecbc3a3d54456
hello, i’m writing bitbucket plugin and trying to offload some bitbucket specific work into thread pool but i’m getting “authenticationcredentialsnotfoundexception”. i’m guessing it’s due to bitbucket api objects having thread affinity. is there any way to copy thread context to executorservice? …
using codeservice on a thread pool
atlassian.com
2021.43
[ { "text": "try to use com.atlassian.bitbucket.user.securityservice and escalatedsecuritycontext\n\nexample\n\nprivate void downloadrepository(repository repository, string commitid, path filepath) throws ioexception {\n\nsecurityservice.withpermission(permission.repo\\_read, \"download repository\").call(() ->…", "name": "", "is_accepted": true } ]
ac682011f23bf510d0afe7f6edf605b8
hi there, i’m looking at extracting jira data for reporting, and the api is looking like a promising way to go, but i can’t figure out how to get a list of sprints, and i can’t even find the words “sprint” (or “backlog” actually) in the documentation at [https://docs.atlassian.com/jira/rest/server/#…](https://docs.atlassian.com/jira/rest/server/#api/2)
rest api for server: get list of sprints
atlassian.com
2021.17
[ { "text": "you’ve hit the api for plain jira. you need that, but software has another layer on top, to expose stuff like boards and sprints. see <https://docs.atlassian.com/jira-software/rest/server/>", "name": "", "is_accepted": true } ]
aea75592a76f21ad5a3ff77241df38d2
hai all, i have an issue when try to add comments in jira issue using rest api in forge custom ui app. my code to add comment in jira issue is, let bodydata = { "visibility": { "type": "role", "value": "administrators" …
how to add comments in jira issue using rest api?
atlassian.com
2021.31
[ { "text": "hi [@suryaa](/u/suryaa) ,\n\nthe body parameter needs to be a json string so change the following line:\n\nbody: bodydata\n\nto:\n\nbody: json.stringify(bodydata)\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
557de807c8fa8db5eeeee6f1981054d5
hi, an app that was working fine yesterday started giving me issues today. i get an “invalid manifest” error in the page but if i launch the tunnel the app works fine. re-deployed and re-installed several times, but no luck… any idea? [[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/4/3/431a6d95ecbad6cdccaacee0e7b1574df96507e6.png "image") i found similar issues here [simple ui](https://community.developer.atlassian.com/t/cant-get-my-simple-forgeui-app-running-in-jira-cloud-deploy-fails/51273) and here [inva…](https://community.developer.atlassian.com/t/invalid-manifest-after-following-forge-hello-world-tutorial/51268)
invalid manifest and forge tunnel
atlassian.com
2021.39
[ { "text": "hey [@matteogubellinisoftc](/u/matteogubellinisoftc), we just deployed what we believe should be a fix for the issue. could you please re-deploy and try again?", "name": "", "is_accepted": true } ]
874e4575b1833133df7d0d66362cdaad
if i try to make rest api calls in confluence cloud i am getting 500 internal server error every time. the same endpoints are working fine if called from the browser after being authenticated. is anyone else experiencing this issue? thanks!! sheff
500 internal server error - confluence cloud rest api call
atlassian.com
2021.17
[ { "text": "hi [@designextech](/u/designextech),\n\ni’ve replicated your issue. i tried removing some of the scopes and when you remove the project\\_admin, i was able to get a response from ap. refer to [atlassian scopes](https://developer.atlassian.com/static/connect/docs/latest/scopes/scopes.html) for more information.\n\nthanks!\n\ncheers,\n\nanne calantog", "name": "", "is_accepted": true } ]
f0888cf8ba23908fa04484f9ee22652e
hi all, we are developing a connect app for confluence cloud. we would like to send custom email notifications triggered by our own app, but we would like to avoid having to implement our own email sending logic that would send notifications from our own domain. we see several reasons for that: usi…
sending custom email notifications from connect app in confluence cloud
atlassian.com
2021.39
[ { "text": "hi [@gabordicsomidori](/u/gabordicsomidori) ,\n\nconfluence cloud doesn’t provide an email sending api as it’s not a trivial solution to implement when considering abuse prevention, etc.\n\nplease see [guidelines for requesting access to email address](https://community.developer.atlassian.com/t/guidelines-for-requesting-access-to-email-address/27603) for information on using email addresses.\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
790011fbfc2ccf4d13537230479a9c89
as the title says - i can create an epic and assign issues to it on a board but when i try to get epic’s issues via jql i get empty result, both in ui and rest api. another rest endpoint for getting issues of an epic, /rest/agile/1.0/epic/{epicidorkey}/issue, returns an error stating that the epic …
jql: "epic link" doesn't work in next-gen projects
atlassian.com
2020.40
[ { "text": "in next-gen projects, the jql you need to use is:\n\nparent={epickey}\n\nthe “epic link” now only works on classic projects.\n\nadditionally,\n\n/rest/agile/1.0/epic/{epicidorkey}/issue\n\nalso doesn’t work in next-gen. we will update the docs to reflect this as soon as possible, instead using the search endp…", "name": "", "is_accepted": true } ]
9299d0507e61b86edd3d9f27e287167d
hi! i’m working on my application and deployment suddenly stared to fail with the following message: error: error thrown in the snapshot context. app code snapshot error: snapshot error occurred: error: forgeui is not defined learn more about the snapshot context at http://go.atlassian.com/forge-s…
can't get my simple forgeui app running in jira cloud... deploy fails
atlassian.com
2021.39
[ { "text": "add “forgeui” to the ui call\n\nimport forgeui, { fragment, projectpage, text, render, useproductcontext, usestate } from \"@forge/ui\";", "name": "", "is_accepted": true } ]
e7385cfcd66b4cce4a2f52326b09d38f
background: marketplace has a fixed database field for the json covering all releases. if the cumulative release volume exceeds that, you just get: [image] this has happened to us half a dozen times now at least, all low hanging fruit has been eaten already. atlassian need to automate purging of…
once again marketplace is not letting us make new jemh releases
atlassian.com
2021.21
[ { "text": "in what is an all time record, we have a resolution in only a few days, fantastic!", "name": "", "is_accepted": true } ]
18d975f25b2086f2328e9baa0d99021b
i am trying to add a webitem into my app. i am using the example fragment used in the documentation example at <https://developer.atlassian.com/cloud/jira/platform/home-container/>, however the webitem is not displaying. from my descrpitor: "scopes": [ "read", "write", "delete" ], "webi…
cannot add a simple webitem
atlassian.com
2021.17
[ { "text": "nuturally, i discover what i am doing wrong 5 minutes after i go to the community :slight\\_smile:, but maybe i can save someone else suffering. the webitems section needed to be put inside the modules section.", "name": "", "is_accepted": true } ]
63efd9edf2999d20735bf6d756fec72b
hi, been trying to create an issue with reporter specified using forge but getting the following error { errormessages: [], errors: { reporter: "field 'reporter' cannot be set. it is not on the appropriate screen, or unknown." } } i am able to create an issue without reporte…
error creating issue with reporter
atlassian.com
2021.31
[ { "text": "this worked… i updated to latest version on forge and updated the payload to have\n\n\"reporter\": {\n\n\"id\": \"557058:f206d58a-04f9-40b5-9b68-c09130e5d0e8\"\n\n},\n\nit created the issue with reporter", "name": "", "is_accepted": true } ]
c4e5888b52d3414c998e987504d2acb2
hi, i like to get all checked items of a dropdown2. my dropdown: <div id="dropdown" class="aui-dropdown2 aui-style-default"> <div id="sectionone" class="aui-dropdown2-section"> <div class="aui-dropdown2-heading aui-dropdown2-checkbox interactive checked"> heading1 </…
how to get checked items of aui-dropdown2 checkboxes
atlassian.com
2021.17
[ { "text": "hi markus,\n\ni quickly tried to get the text of “checked” items on the aui sandbox here: <https://docs.atlassian.com/aui/5.2/sandbox/#>\n\nand it works! specifically you can use jquery to extract and check the markup:\n\njquery('.aui-dropdown2-radio').each(function(i, e){\n\nif (jquery(e).attr('class').in…", "name": "", "is_accepted": true } ]
27764be08a969c4c0f059e22c0dfe273
i have the below groovy code as a post function in jira import org.apache.http.httprequestinterceptor; import org.apache.http.httprequest; import org.apache.http.protocol.httpcontext; import groovyx.net.http.restclient def http = new restclient('https://my-dev.server.net') http.client.addrequest…
unable to get response from confluence server with rest api
atlassian.com
2021.17
[ { "text": "is this scriptrunner? <https://scriptrunner.adaptavist.com/latest/jira/interacting-with-confluence-from-jira.html>", "name": "", "is_accepted": true } ]
58a2da9f79a7d846737824b9f809488c
hi all, this forum is great and nice, but it’s regulated by atlassian. is there a slack or hipchat group for informal discussions between vendors? how do i get invited? thank you! adrien
is there an informal slack group for vendors?
atlassian.com
2021.17
[ { "text": "<https://marketplace-vendors.signup.team/>\n\nadrien you were invited a long time ago, looks like the account has never been accessed.\n\ndavid i have just invited you, you should have an email from slack in your inbox.\n\ncheers", "name": "", "is_accepted": true } ]
a2a15cf5021fa7ec467da88953a350e6
when uploading an updated version of an attachment to a page either via put /wiki/rest/api/content/{id}/child/attachment, post /wiki/rest/api/content/{id}/child/attachment/{attachmentid}/data or copysinglepage the preview only shows a failed to load icon [image] when navigating to advanced deta…
uploading a new version of an attachment breaks the image preview
atlassian.com
2021.21
[ { "text": "the issue is being tracked here: <https://jira.atlassian.com/browse/confcloud-71173>?", "name": "", "is_accepted": true } ]
25d8e95b94fdcf67ad9a61af728bfca7
hi all, i am currently modifying the [mermaid macro plugin](https://marketplace.atlassian.com/apps/1214124/mermaid-plugin-for-confluence?hosting=server&tab=overview) on confluence server such that users can input the diagram code directly in the macro browser dialog. i’ve accomplished this part but now the preview does not show the diagram. [[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/f/f/ff7ef972bdc7e408c1dea45f75a7c1b9f53c1c07.png "image") i know i need to [override the “postpreview” function](https://community.developer.atlassian.com/t/documentation-for-ajs-macrobrowser-setmacrojsoverride/49746/2) …
how to override macrobrowser postpreview function?
atlassian.com
2021.31
[ { "text": "hi [@chongjinghong](/u/chongjinghong) ,\n\ni had a look at your version of the repo and confirmed that the mermaid js resources are no longer being loaded. this is because of the change to comment out the web resource context and change it to the editor context:\n\n<!-- <context>mermaid-plugin</context> -->\n\n<context>editor<…", "name": "", "is_accepted": true } ]
eccd521bad5c8a0e1a58d45ebd11f4a2
i try to create a jsd project for a test system (testing a webhook on project creation). curl -x post \ http://localhost:2990/jira/rest/api/2/project \ -h 'content-type: application/json' \ -h 'cache-control: no-cache' \ -d '{ "key": "sd", "name": "service desk", "projecttypekey…
creating a jsd project using /rest/api/2/project leads to "internal server error"
atlassian.com
2021.17
[ { "text": "hello [@m.schmidt](/u/m.schmidt),\n\nyou have an invalid entry for projecttemplatekey and that’s causing the error; i think you’re specifically looking for com.atlassian.servicedesk:itil-v2-service-desk-project. to find out the possible values, you might want to explore the private api /rest/project-templates/1.0/tem…", "name": "", "is_accepted": true } ]
f8535e852dc4cd75cdd2284ae18819b5
hi there, i am using customui and noticed the following strict mode warnings in the console when using the progresstracker and inlinemessage atlaskit components. i am unable to follow the suggestion about updating as i am already using the latest versions. also it seems the inlinemessage component…
strict mode warnings from atlaskit progresstracker and inlinemessage components
atlassian.com
2021.17
[ { "text": "fyi, identified a workaround by installing earlier version of styled-components. i was using\n\n“styled-components”: “^5.2.1”\n\nby installing “styled-components”: “^3.2.6” - all warnings disappear and both inlinemessage and progresstracker now work without any problems.", "name": "", "is_accepted": true } ]
75a8add4b13936b5fcc8720a6389d06d
hey community, i am currently working on a jira export plug-in and was wondering if there is any good way to find out how to display a custom field. i could just use switch case or if statements to check for the field types, but that would probably stop working once custom fields from other plug-i…
determining how to render certain custom fields
atlassian.com
2021.17
[ { "text": "hi felix,\n\ni do it like this:\n\nobject value = customfield.getvalue(issue);\n\nif (value != null) {\n\nfieldlayoutitem fieldlayoutitem = fieldlayoutmanager\n\n.getfieldlayout(issue.getprojectobject(), issuetype.getid())\n\n.g…", "name": "", "is_accepted": true } ]
2d017eecb0206acb8c3707fc38c9203e
i have a tracking pixel on my marketplace listing which gives me data on traffic to the page but can’t get organic search terms. they show up as “(not provided)”. does anyone have any experience getting this data to show? it’d be very useful to see what search terms users were using to reach the li…
connecting google analytics and search console to marketplace listing
atlassian.com
2020.40
[ { "text": "google search console should work for marketplace listing pages, because it supports directories as separate entities, however this would require some work on atlassian side: allowing vendors to insert ownership verification meta tag, but i don’t think if there are chances for this to happen.\n\nthe b…", "name": "", "is_accepted": true } ]
b71c593ec3c2e6b11962be6bfd22fa26
i am trying to retrieve all the fields that get presented when one clicks edit issue in a specific project, including custom fields. then later on show these on the ui in my plugin. as far as my development and test environments go i thought i had achieved this with, but trying it out in a producti…
how to retrieve all fields from edit issue screen?
atlassian.com
2021.17
[ { "text": "the two methods retrieving the fields\n\ngetvisiblefieldlayoutitems();\n\ngetrequiredfieldlayoutitems();\n\nwere not returning proper results. changed both to use getfieldlayoutitems(); and then filtering the results.\n\nthis is the code now :\n\n@override\n\npublic list<jsonobject> getmandatoryfields(str…", "name": "", "is_accepted": true } ]
a2a88209ff12640dd74440ec6ab811e3
i’m trying to use the rest interface, but i can’t get the json web token to work correctly. i keep getting 401 errors back. here’s my code: endpoint = 'https://testtablet.atlassian.net' url\_prefix = '/rest/api/latest' def get\_token(url): method = 'get' path = url\_prefix + url token =…
how do i sign my jwt requests for the rest interface?
atlassian.com
2021.21
[ { "text": "to answer your earlier question, the ‘tenant base url’ is <https://testtablet.atlassian.net> for jira and <https://testtablet.atlassian.net/wiki> for confluence.\n\ni got a trivial add-on working with atlassian-jwt and i think i know what the issue was: we should be providing the addon key as the ‘clientk…", "name": "", "is_accepted": true } ]
47d82ee4b702b6a3f0ed65b13d73d7a3
hi [@jcheung](/u/jcheung) we are receiving this error in internet explorer 11 when we use some components of atlaskit. object doesn't support property or method 'assign' i’ve investigated the error details and it seems that is the icon class. the version of the icon is 6.5.2 we need to solve this because we u…
internet explorer 11 support
atlassian.com
2021.17
[ { "text": "hi [@carlos.fernandez](/u/carlos.fernandez) thanks for the field-base issue, glad to hear [email protected] is working for you. fyi [stackblitz.com](http://stackblitz.com) is a good alternative if codesandbox is not working on ie 11.\n\ni’ve raise a pull request ([link](https://bitbucket.org/atlassian/atlaskit/pull-requests/3940)) to get the @atlaskit/field-base dependencies updated.\n\ncheers\n\nben", "name": "", "is_accepted": true } ]
63d7d46aedb7b2f6ca696a0e3344a564
hi team, when i tried to add the signed-install property to the atlassian-connect.json file following the steps in the next topic: [action required - atlassian connect installation lifecycle security improvements](https://community.developer.atlassian.com/t/action-required-atlassian-connect-installation-lifecycle-security-improvements/49046?utm_source=alert-email&utm_medium=email&utm_campaign=breaking-api-change_eml-11171&jobid=105153349&subid=1514745204#what-do-i-need-to-do-4) the following error occurs when i try to install the app: 2021-09-21 11:31:36.497 err…
unsupported jws algorithm rs256, must be hs256, hs384 or hs512 when i add the signed-install property to the atlassian-connect.json
atlassian.com
2021.43
[ { "text": "hi [@jbolufer](/u/jbolufer) ,\n\nfrom your stack trace, i can see that you are using atlassian-connect-spring-boot v2.1.4.\n\ncould you please try again with the latest version? v2.2.3", "name": "", "is_accepted": true } ]
8761a769b8e48dcc63d3765067ae8461
hi guys, i have multiple columns on ao entity. and i want to join all the info into a new column and delete the old ones. this must be done with an upgrade task. basically, i need to remove and add columns at the same time. [screenshot\_1] with this example, i want to remove upload\_flag and condi…
delete database column and save the data first
atlassian.com
2021.17
[ { "text": "why do you need to remove the column?\n\nmy suggestion would be to create an upgrade task to set the condition column and then leave the old ones. then in a couple of versions later - then introduce version that removes the columns (you would just remove the set/get) .\n\nif you don’t go that route the…", "name": "", "is_accepted": true } ]
3234b4d4c84612684fe4ccd41c0fb385
hi there, i’m trying to find a way to do what the title says :slight\_smile: the confluence version i’m working with is 6.1.3 (server). the rest api has an endpoint to get the restrictions of a page, but there isn’t one to set them. i’ve searched through the javadocs for a while now and i haven’t f…
set page restrictions programmatically
atlassian.com
2021.17
[ { "text": "looks like there’s a tinymce end point but i would label that as a private api (i.e. it could change and then you’ll just be upset with me for suggesting it to me).\n\nsince you’re running on server i would suggest creating your own end point and using [https://docs.atlassian.com/confluence/6.0.4/com/a…](https://docs.atlassian.com/confluence/6.0.4/com/atlassian/confluence/core/contentpermissionmanager.html)", "name": "", "is_accepted": true } ]
bc4f60528cc3d50b193b1267ba3c9190
hi, i have gone through the following tutorial to implement custom functionality in jira server plugin. <https://developer.atlassian.com/server/jira/platform/extending-the-rich-text-editor-in-jira/> how do i do the same for atlassian cloud? requirement when i type some character like ‘~’ in cloud…
cloud solution for adding functionality in rich text editor and wsgi editor
atlassian.com
2021.17
[ { "text": "hi [@thangappanmohan](/u/thangappanmohan),\n\nit is not currently possible to build extensions to the text editor in jira cloud. we are in the process of releasing an all-new rich text editor for jira cloud. while we expect to support extensibility in the new editor eventually, there is no timeline right now.\n\nregards,\n\nda…", "name": "", "is_accepted": true } ]
b228cae9010addb12105a589a3962521
hi all, i’m trying to get all issues from a projet via jira cloud rest api. when looking at the project “all issues” view in jira, i see the project contains 160 issues. when requesting all issues via rest api using: /rest/api/2/search?jql=project=" + [project id] i get the following response: […
get all project issues
atlassian.com
2020.10
[ { "text": "hi [@jbevan](/u/jbevan),\n\nno, no sub task is present in my case. problem might be in my code, as i had promises running in parallel the same request. i can not reproduce the problem when i sequencially download the issues (because of pagination) with serial requests…\n\nthank you!", "name": "", "is_accepted": true } ]
1cfac9f69b6eb9324749e7f95b479f72
jira cloud allows a user to rename a dashboard item via a ‘rename’ item in the dashboard’s menu. that’s cool, right? the atlassian connect javascript api also provides the jira.setdashboarditemtitle(title) function. also cool. now, what if my dashboard item wants to set the title to something deri…
dashboard item titles
atlassian.com
2021.17
[ { "text": "hey [@david.pinn](/u/david.pinn),\n\nthis is because we added the ability for users to rename dashboard items for the ui after the acjs api was already in place, so there was no need to consider this type of logic when we developed the api. definitely a useful improvement that you’re suggesting. i will raise an issue …", "name": "", "is_accepted": true } ]
a06323182af9903ce54c40e410c81dba
should i expect the following curl command to work? curl -x post \ 'https://hello.atlassian.net/wiki/rest/api/content?expand=body.atlas\_doc\_format' \ -h 'accept: application/json' \ -h 'authorization: basic <my token>' \ -h 'content-type: application/json' \ -d '{ "title": "test page", …
can i create content in confluence cloud using atlassian document format (adf) rather than storage format?
atlassian.com
2021.17
[ { "text": "hello,\n\nyeah this is a bit confusing since the get for this works differently.\n\nto get it working, instead of\n\n\"body\": {\n\n\"atlas\\_doc\\_format\": {\"value\":\"{\\\"version\\\":1,\\\"type\\\":\\\"doc\\\",\\\"content\\\":[{\\\"type\\\":\\\"paragraph\\\",\\\"content\\\":[{\\\"type\\\":\\\"text\\\",\\\"text\\\":\\\"some text in a paragraph\\\"}]}]}…", "name": "", "is_accepted": true } ]
b3ae6a62e27dd9577ed31b9ea26cf429
hi, i have developed refapp plugin which will be used in jira, bitbucket and confluence products. one of the functionality of this plugin will be to store auth data after successful automated oauth dance for each user in the local h2 db. storing this data is performed by this method: @scanned @nam…
activeobjects not persisting data in confluence server
atlassian.com
2021.17
[ { "text": "confluence requires the transactions to be able to write to the db. i believe that your problem is that you’re defining the @transactional annotation on the interface and not on the implementation. i would shift that over there. if that doesn’t work, then inject transactiontemplate from sal and wrap…", "name": "", "is_accepted": true } ]
15410ebc5ddfdb8e3de5083fab136722
hello, i’m wondering if is it possible to get columns constraints in kanban board via jira cloud api. i tried to find it out but with no luck. it seems that jira api doesn’t have such option, but, perhaps, i’m missing something. perhaps, there’s another way to get them. i will appreciate any help…
get columns constraints in kanban board via api in jira cloud
atlassian.com
2021.17
[ { "text": "hi, [@alexander](/u/alexander),\n\nhave you seen the jira software rest api? especially, the board configuration endpoint: <https://developer.atlassian.com/cloud/jira/software/rest/#api-board-boardid-configuration-get>\n\ncheers\n\nkrzysztof", "name": "", "is_accepted": true } ]
b398a52a8d89b0bd3b75798c475cfc96
hello cloud add-on experts, is there any way or api procedure to get licensed and installed jira cloud instances in atlassian connect spring boot? best regards, swetha shetty
atlassian connect add-on spring boot api get licensed installed jira cloud instances
atlassian.com
2021.17
[ { "text": "[@scmenthusiast](/u/scmenthusiast), there is no webhook on license change, so atlassian-connect-spring-boot doesn’t keep track of that state. you can list all your past and present installations using [atlassianhostrepository](https://static.javadoc.io/com.atlassian.connect/atlassian-connect-spring-boot-api/1.5.1/com/atlassian/connect/spring/atlassianhostrepository.html)#findall() and filter by [atlassianhost#isaddoninstalled()](https://static.javadoc.io/com.atlassian.connect/atlassian-connect-spring-boot-api/1.5.1/com/atlassian/connect/spring/atlassianhost.html#isaddoninstalled--) to find current installations.\n\nto obt…", "name": "", "is_accepted": true } ]
69f9046b89f34e3cee4e972c5488eee0
i have tried to figure out other opensource… in there, there is below code… i tried to figure it out by myself… but i could not… if somebody knows about it… please explain about it… for example … <iframe class="portal-page-container" src="{contextpath()}/secure/portalwelcomeaction!iframe.jspa?de…
can u explain about {action-alias-name}!iframe.jspa?decorator=none
atlassian.com
2021.17
[ { "text": "i’m going to assume that you seek to understand what the different components are of the link portalwelcomeaction!iframe.jspa?decorator=none or {action-alias-name}!iframe.jspa?decorator=none.\n\nthe webwork framework consists of actions (the {action-alias-name} part) and commands (the !iframe part.\n\ni…", "name": "", "is_accepted": true } ]
97e7cda97a7b599e0cde5b6eb4e750f6
hello, i try to configure that quickreload mention that i change something on my js/css or vm files, so i don’t need to run atlas-package every time i change somethin at this files. with fastdev that was pretty easy, buut whit quickreload this is really excausting to do a full reload of the plugin…
how to enable quickreload track js/css/vm files?
atlassian.com
2021.17
[ { "text": "hello, i opened a ticket for atlassian support and they solved it.\n\n[devhelp-1372](https://ecosystem.atlassian.net/servicedesk/customer/portal/14/devhelp-1372?token=eyj0exaioijkv1qilcjhbgcioijiuzi1nij9.eyjxc2gioijjywzlzguyzmy5mdm4zmjkmtzimtjjmzywyti0ytnhmtzlzjawodawmty0ngm0ywvhnwq1mjc4nwnmmmu0ntawiiwiaxnzijoic2vydmljzwrlc2stand0lxrva2vulwlzc3vlciisimnvbnrlehqionsidxnlcii6ijg2mjmyiiwiaxnzdwuioijervziruxqlteznziifswizxhwijoxntmymzuymdu2lcjpyxqioje1mjk5mzi4ntz9.1hgjbj12bvudewlrgnky9khfifmrlez4hskuskk6lh8)\n\ni had to add this:\n\n<pluginartifacts>\n\n<pluginartifact>\n\n<groupid>com.atlassian.labs.plugins</groupid>\n\n<artifactid>quickreload</artifactid>\n\n<version>1.30.2</ver…", "name": "", "is_accepted": true } ]
c5ff5176d2035543a5aceab9d05f152e
i usually access my services via constructor injection, but i have a use case where i would rather like to inject it via the componentaccessor (i know it should be used rarely). my service interface and implementation look like this: @named public class myserviceimpl implements myservice{ @co…
how can i acess my own service with the componentaccessor?
atlassian.com
2021.43
[ { "text": "hello caroline,\n\nas long as there’s some kind of dependency injection (for jira components), maybe you can try to inject spring’s applicationcontext, and then use getbean as needed. i found that this works for our use case.\n\nsomething along the lines of:\n\n@named\n\npublic class foo {\n\n@componentimp…", "name": "", "is_accepted": true } ]
2bec5ec7c4c3ccd188e29b2906461e78
i have a confluence plugin with two main modules: xhtml-macro and rest. the macro displays a button that, when clicked, should make a post request to my rest endpoint: /rest/vimeo-validator/1.0/validate. however, i am getting a 404 error returned from this request. the complete code for the plugin …
receiving 404 when making request to rest endpoint
atlassian.com
2021.17
[ { "text": "bah found it. you miss the “confluence” in the javascript:\n\n$.post('/confluence/rest/vimeo-validator/1.0/validate',\n\nfunction (data, status) {\n\nconsole.log('status: ', status);\n\nconsole.log('data: ', data);\n\n}\n\n);\n\nyour site is accessed by [h…](http://localhost:1990/confluence)", "name": "", "is_accepted": true } ]
25ff74b585f409ed988f6551955c04b5
steps to reproduce the bug <https://developers.trello.com/reference/#cardsidchecklists-1> when i try this, it will always create the new checklist at bottom (last position). no matter if i pass top or 1, it’s always at bottom. (tested with the try it tool on the website as well as with normal curl f…
bug: checklists not created at correct position
atlassian.com
2019.47
[ { "text": "give it a try now. it looks like the fix for it just recently went live.", "name": "", "is_accepted": true } ]
11985be9ed14a4fb96fd81dd2cc15508
hi. i’m currently writing a confluence plugin which provides an api for receiving files and attaching these files to a page. the plugin runs with administrator privileges and so the default user/creator in that case for generated pages or attachments is always ‘anonymous’. i’m able to manually chan…
setting the user associated with an uploaded attachment via api
atlassian.com
2021.31
[ { "text": "hi [@frankblankenburg](/u/frankblankenburg) ,\n\nas you mention, confluence sets the attachment creator to the current user upon saving with attachment.setcreator(authenticateduserthreadlocal.get());.\n\nit is possible to override the attachment creator, although this is not recommended and is using deprecated api. we…", "name": "", "is_accepted": true } ]
3b4412b98fe787be556ef19356e97c60
hello! how can we push a little bit forward the “top vendor” approval process? we created a request to get a top vendor sign on 23/03/2020, but so far didn’t get it. the ticket <https://ecosystem.atlassian.net/servicedesk/customer/portal/9/amkthelp-21114> any ideas?
top vendor approval
atlassian.com
2020.34
[ { "text": "hi [@andyjames](/u/andyjames),\n\ni’m afraid i have bad news for you as the top vendor program is essentially discontinued in favor of the marketplace partner program since yesterday, july 1st. the most relevant difference is likely the change in requirements: you will no longer be able to participate in this program…", "name": "", "is_accepted": true } ]
a41e4671ba57ea236e4aa87fd9d8290e
i know it’s not adg3 related, but the adg2 site used to have a sketch library for adg2. is it possible for that to be put back up please?
adg2 sketch files
atlassian.com
2021.17
[ { "text": "hey [@daniel](/u/daniel), great point. the server design site can still be found at <http://go.atlassian.com/adg2> however the sketch file is notably absent (i recall it too).\n\nwhile we sort that out, here’s the adg 2 psd and sketch files over at <http://go.atlassian.com/adg2resources>\n\n-nick", "name": "", "is_accepted": true } ]
b15ac9e24faba0bc9759a1c7820bf2e0
i am trying to make a comment on an issue through the rest api that references or links to an attachment inside that issue. i have already successfully attached a pdf file to the issue and now would like to reference that attachment in a comment using the api so that the service desk customer can ac…
link or reference an attachment in a comment
atlassian.com
2021.17
[ { "text": "i figured out how to do this. instead of using the jira api use the jira service desk api. under request, there is a [create attachment](https://developer.atlassian.com/cloud/jira/service-desk/rest/#api-rest-servicedeskapi-request-issueidorkey-attachment-post) function that allows you to create an attachment to the issue and then leave a comment for the customer referencing that attachment.\n\nthis worked well and i was able…", "name": "", "is_accepted": true } ]
f84774a61e6f67b38e6cc9422f90a158
hello, i created a project template plugin, according to the tutorial here: <https://developer.atlassian.com/server/jira/platform/creating-a-project-template/> it works fine! :slight\_smile: i’d like to catch exceptions in the configure method of my hook, and to display the error message on a scree…
jira project template - how to deal with exceptions in addprojecthook?
atlassian.com
2021.17
[ { "text": "looking at the javadocs: <https://docs.atlassian.com/software/jira/docs/api/7.6.1/com/atlassian/jira/project/template/hook/addprojecthook.html>\n\nat the point that configure() is called - the project has already been created. at that point there is nothing the user can do - that’s why they’re regardles…", "name": "", "is_accepted": true } ]
dd344add7f0ce2eeace434243794a0ce
hi! this issue is the same as <https://ecosystem.atlassian.net/browse/jsdeco-77>. we’re building an app for jsd server that themes and organize the customer portal (refinedtheme for jsd). in this app the user can setup a knowledge base with confluence instances to search for confluence content artic…
encoding issue using confluence content search
atlassian.com
2021.17
[ { "text": "hey [@julia](/u/julia),\n\nit’s clear now that it’s indeed a problem caused by jira using the default encoding of the operating system it runs on. which is ‘cp1252’ for windows. this encoding has problems with non-ascii characters.\n\na workaround can be found here: [https://confluence.atlassian.com/jirakb/jira-app…](https://confluence.atlassian.com/jirakb/jira-application-internationalisation-and-encoding-troubleshooting-203394762.html)", "name": "", "is_accepted": true } ]
8be0f7ab9aff39fafef99e0d4fe5d4f2
dear community, i’m using mailservermanager in an older plugin successfully (the holding class is defined as component in atlassian-plugin.xml; constructor based injection of mailservermanager w/o spring annotations). in a newer plugin which is using spring scanner annotations i’m unable to inject…
unable in inject mailservermanager with spring annotations
atlassian.com
2021.17
[ { "text": "hi [@tchin](/u/tchin), i found just only one solution, mailfactory.getservermanager().", "name": "", "is_accepted": true } ]
4671203559f93b4c5502aa33de69b6f1
i wanted to learn from jira source code how they do certain things in the rest api, but i have a hard time to find it in the jira source zip. do you know in which package i find the rest implementation in jira source code?
jira source code of rest api classes
atlassian.com
2021.17
[ { "text": "the platform rest calls are bundled in a plugin:\n\njira-components > jira-plugins > jira-rest > jira-rest-plugin\n\nhowever some api calls might be scattered across other plugins…", "name": "", "is_accepted": true } ]
3a31a4723c0338103436d6615e4845ad
in [this “creating jira report tutorial”](https://developer.atlassian.com/jiradev/jira-platform/guides/projects/tutorial-creating-a-jira-report) there’s this line of code that gets date parameter from ui: date startdate = parameterutils.getdateparam(params, "startdate", i18nbean.getlocale()); but getdateparam method is deprecated and the documentation recommends using datetimeformatterfactory instead…
how to use datetimeformatterfactory to get date parameter
atlassian.com
2021.17
[ { "text": "i think the following could work, but i have not tried it, and looks too long:\n\ndatetimeformatterfactory.formatter().withstyle(datetimestyle.date\\_picker).parse(parameterutils.getstringparam(params, \"startdate\"));\n\nsee also <https://jira.atlassian.com/browse/jra-62857> for possibly related problem.", "name": "", "is_accepted": true } ]
94b93d84548d6cf7e360af6e36679144
i tried to use jira java rest api to get issues, it does return (first) 50 issues: searchrestclient.searchjql(“project = ‘tes’”).claim(); then i tried to get more: searchrestclient.searchjql(“project = ‘tes’ and startat=51”).claim(); searchrestclient.searchjql(“project = ‘tes’ and maxresults=200…
jql in jira java rest api searchrestclient.searchjql()
atlassian.com
2021.17
[ { "text": "rather than incorporating the startat parameter into the jql, pass it as a separate argument:\n\npromise<searchresult> searchjql(\n\n@nullable string jql, int maxresults, int startat)\n\nsee [searchrestclient javadoc](https://docs.atlassian.com/jira-rest-java-client-api/2.0.0-m4/jira-rest-java-client-api/apidocs/com/atlassian/jira/rest/client/api/searchrestclient.html#searchjql(java.lang.string,%20int,%20int)).", "name": "", "is_accepted": true } ]
a676d3e56e6f9812caa6548da9699975
so i just started looking into how to create a theme for confluence cloud and wanted to know if it is possible to remove themes that i created for testing?
remove a test theme
atlassian.com
2020.16
[ { "text": "if you created a custom theme as an app all you need to do is uninstall the app from manage apps settings.\n\njust look for the name of the app you specified in your app descriptor. click on it and click on uninstall.", "name": "", "is_accepted": true } ]
465e76323e6bcbc682c9a89a4ce8c8a0
hello, i want to use the native cleanup (unmount) function from react. sadly typescript is throwing an error that a return value of useeffect is not valid. here are the doc from the react: [image] [using the effect hook – react](https://reactjs.org/docs/hooks-effect.html#example-using-hooks-1) a javascript library for building user interfaces …
useeffect cleanup function
atlassian.com
2021.39
[ { "text": "hi [@alexanderschlegel](/u/alexanderschlegel),\n\nui kit does not support a cleanup function. note that while ui kit may look similar to react, it is not the same as react.\n\n<https://developer.atlassian.com/platform/forge/ui-kit-hooks-reference/#useeffect>\n\nalso, from your code snippet, you need to be careful with settimeout u…", "name": "", "is_accepted": true } ]
4e3a49e3f0da0496b28e749ceca83791
hello, can anyone please help to automatically raise tickets and get notifications using bat? we have several issues that we are solving every day or every week or month and would like those tickets to be raised automatically and get notifications. please help, thanks in advance
using bat for raising tickets automatically
atlassian.com
2021.17
[ { "text": "fyi: there are several apps on the atlassian marketplace that solve this issue for you. see <https://marketplace.atlassian.com/search?product=jira&query=schedule>", "name": "", "is_accepted": true } ]
60627040043b938de915e8c6f8464edc
i have 2 free text custom fields called longitude and latitude. users enter text info with decimal numbers. i want to convert that data to dms numbers in a new respective text fields example “longitude (dms)”. using jwme and automation for jira. example if user enters “latitude - 40.75” it would be…
jira cloud - convert longitude and latitude field data to dms (degrees, minutes, seconds)
atlassian.com
2021.17
[ { "text": "using jmwe for jira cloud, yo could do something like this for the latitude:\n\n{% set val = issue.fields.latitude | float %}\n\n{% set hemisphere = \"n\" if val >= 0 else \"s\" %}\n\n{% set val = val | abs %}\n\n{% set deg = val | round(0, 'floor') %}\n\n{% set min = ((val - deg) * 60) | round(0, 'floor') %}\n\n{% set …", "name": "", "is_accepted": true } ]
3a462dfd6df08fa2af2a90eb138e4419
hi, following the jira 8.0.0-eap06 announcement (<https://confluence.atlassian.com/adminjira/jira-platform-releases/jira-development-releases/preparing-for-jira-8-0>), what is the pom.xml to start jira in eap version? i’ve searched on [maven.atlassian.com](http://maven.atlassian.com) and it doesn’t know anything about jira-api.j…
artifact could not be resolved: com.atlassian.jira:jira-api:jar:8.0.0-eap06
atlassian.com
2021.17
[ { "text": "hi [@aragot](/u/aragot),\n\ni believe the maven packaging names (milestones) for these eap releases follow a different numbering scheme than the eaps. earlier release posts made this clearer.\n\nthe current eap06 corresponds to m0015, so your jira.version variable should read 8.0.0-m0015. the mapping is detailed at …", "name": "", "is_accepted": true } ]
32f746a1fa9249427fd23130e35029db
we have tried internationalizing our jira cloud add-on based on this [documentation](https://developer.atlassian.com/cloud/jira/service-desk/internationalization/?_ga=2.173644518.459520488.1527858650-2120638691.1527858650), we got the add-on name changed in side bar as specified. but, how can i apply the internationalization within my add-on page. is there any default methods in jira to implement this? or, what is the recommended way t…
jira add-on page internationalization
atlassian.com
2021.17
[ { "text": "or use this: [getting user details](https://community.developer.atlassian.com/t/getting-user-details/34201/5)", "name": "", "is_accepted": true } ]
938403df4a7ddde53af265eea2b90844
hey there. i am currently working on a macro-plugin for confluence and i am, once again, stuck. i can’t seem to make an icon appear in the macro browser. i thought it should be pretty easy… but no… all i get is a white field with “icon” written in the top left corner. here is what i have right no…
can't add macro icon
atlassian.com
2021.17
[ { "text": "this is much harder than it ought to be, but once you’ve done it correctly for the first time, you just copy & paste.\n\ni have my icon at:\n\n/src/main/resources/images/gist-icon.png\n\nimportantly, i have a resource which points to the images directory\n\n<resource key=\"images\" name=\"images/\" type=\"downlo…", "name": "", "is_accepted": true } ]
6e1a8641ea1087ef4b9e23fc6ec45161
hi there, when i sent request-url like “curl -s <https://api.bitbucket.org/2.0/repositories/seanfarley/mercurial/refs/branches>”, i can only get 10 branches, is there any way to get all existing branches? thanks!
how to get all branches instead of only 10 by rest-api 2.0
atlassian.com
2021.17
[ { "text": "hi [@jin.wu](/u/jin.wu),\n\nto modify the page length, try passing a pagelen query parameter. using your sample (which currently returns 2 branches in 1 page), add pagelen like this curl -s https://api.bitbucket.org/2.0/repositories/seanfarley/mercurial/refs/branches?pagelen=1. this will result in a reduced result…", "name": "", "is_accepted": true } ]
8b3b132d8adf2488314a71633e912b24
hi team, i am unable to initialize jdbc basicdatasource connection pool for external database in jira plugin through rest api. but it works only via jirawebactionsupport or tabpanel. it throws error java.sql.sqlexception: cannot load jdbc driver class ‘org.postgresql.driver’. this driver jar is alr…
unable to initialize jdbc basicdatasource connection pool through rest api
atlassian.com
2021.17
[ { "text": "shipping drivers in plugin solved this problem.", "name": "", "is_accepted": true } ]
ea3d4a909167df004e0b238a8ff2c447
for some reason, i am getting this error when i am running active object unit tests on the lines of this tutorial : <https://developer.atlassian.com/server/framework/atlassian-sdk/getting-started-with-active-objects/> . has anyone ever got this error so far while running atlas-unit-test. if so, may i…
you can't operate on a closed connection! - getting this error when running active objects unit tests
atlassian.com
2021.17
[ { "text": "i was able to fix this issue. the problem was that the notnull fields had to be supplied in dbparams, as well as every unit test related to active objects had to be annotated as nontransactional.", "name": "", "is_accepted": true } ]
8d8978302804362a2802320b3880d232
hi guys, i have created a simple macro which makes rest calls to specific points, gets the infomration and shows them on page. pretty simple. now the thing is: i want to make it possible to the clients (who ever uses my macro) to be able to define the rest endpoint base url once per confluence ser…
provide dynamic configuration (properties) for macro
atlassian.com
2021.43
[ { "text": "i don’t know if confluence has such a configuration. however, i can suggest the following.\n\n1- if you want to get a confluence base url, you can use this ajs.confluence.getbaseurl(). the base url is unique to the instance.\n\n2- if you want them to manually provide a baseurl then you can provide a fie…", "name": "", "is_accepted": true } ]
a9326d50f3cb8c0f62ead6656e3d1344
hello, my jira plugin has two entities with many to many relation. first entity is carrier and the second entity is folder: folder entity: public interface folder extends entity { // other methods @manytomany(through = "getfolder", reverse = "getcarrier", value = carriertofolder.class) carrier[] …
jql limit results @manytomany
atlassian.com
2021.17
[ { "text": "problem solved. my through and reverse attributes was wrong. this is the correct:\n\npublic interface folder extends entity {\n\n// other methods\n\n@manytomany(through = \"getcarrier\", reverse = \"getfolder\", value = carriertofolder.class)\n\ncarrier[] getcarriers();\n\n}\n\npublic interface carrier extends entity {…", "name": "", "is_accepted": true } ]
25acece278260fa1c68fcd0b4e9cc731
i’m using forge to make jira cloud addon. what should forge do to support multi languages? if you know the relevant documents or methods, please leave a comment. thank you. p.s. i tried the react-i18next module, but it doesn’t seem to work.
how to set up multi languages in forge apps
atlassian.com
2021.25
[ { "text": "hi [@davidlee](/u/davidlee) ,\n\nit seems that [this topic](https://community.developer.atlassian.com/t/internationalization-approach-for-forge-apps/45111/13) has no priority in the forge roadmap . :confused:", "name": "", "is_accepted": true } ]
cc15cf8fe0356c0b2ef5babb9f3e6988
i’m currently working on a plugin that accesses a user’s projects, and i’m making a call to the api to get the projects they have access to. when not specifying that i want x recent projects returned, it works fine. however when i make the call specifying any number for how many recent projects to r…
issue with retrieving recent projects
atlassian.com
2021.17
[ { "text": "hi [@sullivan-bormannaj](/u/sullivan-bormannaj),\n\nwhy are you passing the jwt as parameter? where are you trying to invoke this call? you can also do this via ap.request, something like this:\n\nap.request({\n\nurl: \"/rest/api/latest/project?recent=1\",\n\nsuccess: function (responsetext) {\n\nconsole.log(responsetext);\n\n…", "name": "", "is_accepted": true } ]
552df76971bb3dc4075acf61d289f41b
i am trying to create a connect app,the model of the app i am trying to create is given in this link(<https://developer.atlassian.com/cloud/assetsapi/introductions-and-basics/getting-started/>),so my app adds assets to the jira portal and in the linked assets panel it should be able to show device det…
i am trying to create a connect app using python flask,i want to add an asset panel with the app,how can i do it?
atlassian.com
2021.10
[ { "text": "hi [@harshitsomani](/u/harshitsomani),\n\nlooking at the app descriptor in the screen shot, i think the aspect you are missing is the addition of an asset panel. the asset panel will be shown if you follow these steps:\n\nconfigure a project such with a custom assets field that is visible in the appropriate screens.\n\nuse t…", "name": "", "is_accepted": true } ]
9c75fd51be124a56cb18b35627abf0cd
cross posting from <https://bitbucket.org/atlassian/atlaskit/issues/41/invalid-dependency-on-atlaskit-theme-100> to make this more visible to atlassian
@atlaskit/theme is broken
atlassian.com
2021.17
[ { "text": "hi [@jbevan](/u/jbevan) thanks for raising this here as well. the root issue should now be fixed, as the affected atlaskit package versions (that had a dependency on a non-existent version of @atlaskit/theme) have been unpublished from npm. we’re following up with new releases to re-publish those versions with t…", "name": "", "is_accepted": true } ]
a7576cf91241e51dfa06479a156aad2a
i have a p2 macro that stores data in ao. when the page is copied, i want to copy the macro’s data to new ao records for macros on the new page. to do this, i need to know what the source page of a copy was when rendering a macro on the copied page. at first i tried listening to the page copy eve…
how can i store data with a page or macro so that it's copied when the page is copied?
atlassian.com
2021.21
[ { "text": "welcome to the ever same problem that i encounter with macros. because macros lack a unique identifier, all of these copy operations are inherently flawed and difficult. not even atlassian gets it right with checking / unchecking tasks (not quite a macro, but same problem - lack of unique ids), whil…", "name": "", "is_accepted": true } ]
33b94ede386429eef354d9e812327944
our plugin needs to create a project and we are getting an error project creation: 403 { errormessages: [ ‘you must have global administrator rights in order to modify projects.’ ], errors: {} } at the same time the api documentation says we only need project\_admin, not admin rights. [https://de…](https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-scopes/)
scope level required to create project
atlassian.com
2021.17
[ { "text": "hi piotr,\n\nthis is an error in the documentation. post requests to the /project resource should and does require admin scope. this is consistent with the jira ui, where creating new projects requires the jira administrators global permission.\n\ni’ve created an internal documentation bug to fix this.\n\n…", "name": "", "is_accepted": true } ]
85c511ca09003f6c1d66bf1b0696bfaf
hey guys, i was wondering, if there are any plans to add listeners for app events like “app installed”. an example for this would be: after the app has been installed, execute method xyz. this way this method would only automatically be triggered once which would be very handy for one of our use ca…
event listeners for forge app installation
atlassian.com
2021.31
[ { "text": "this would be extremely useful indeed, most notably for tenant specific resource management and custom analytics. we have lobbied for this early on, and it [has meanwhile been acknowledged](https://community.developer.atlassian.com/t/forge-app-lifecycle-events/48047/2), albeit w/o any eta, so please watch and vote for the following issue to raise atlassian’s priority for addressi…", "name": "", "is_accepted": true } ]
705053c2fd2bc735f1bdab3cabdef059
hi, i am trying to create a small extension for jira cloud using forge and i am trying to create issue on web-trigger event on certain condition. can anyone point out what obvious thing i am missing i am getting the following error errormessages: [ 'can not deserialize instance of com.atlas…
forge api create issue error
atlassian.com
2021.31
[ { "text": "looks like you are providing an invalid “parent” value.\n\nparent: { key: 'split' } does not look like a valid reference to an issue. parent is used for subtasks while “split” looks like the key of a project. you are already referencing a project by it’s id (10000).\n\nyou can remove the “parent” part o…", "name": "", "is_accepted": true } ]
d23ed46ddf423c9baccaf140f8eb65a7
for some reason, we’re seeing a lot of invalid 'tnt' failures on our calls to the [atlassian authentication server](https://developer.atlassian.com/cloud/jira/platform/oauth-2-jwt-bearer-token-authorization-grant-type/). is anybody else seeing the same error?
invalid 'tnt' errors from auth server
atlassian.com
2021.17
[ { "text": "i believe this was caused by a mistake on our side. we were sending requests to the authentication server for users who belong to hosts that had uninstalled our add-on.", "name": "", "is_accepted": true } ]
48db896d29ec3475a5e890316a2bf2af
i’m building static macro and in macro editor url i’m not able to put context params like space.id or page.id. so this will not work: "editor": { "url": "/macro/editor?&spaceid={space.id}", "edittitle": { "value": "edit dynamic macro" }, "inserttitle…
problem with accessing context params (like space.id) when building static macro plugin
atlassian.com
2020.10
[ { "text": "[@richardhamilton](/u/richardhamilton), unfortunately, context parameters are not available in the macro editor module url; however, you can use the [navigator api](https://developer.atlassian.com/cloud/confluence/jsapi/navigator/) in js.\n\nap.navigator.getlocation(function (location) {\n\nconsole.log(location);\n\n}\n\nin that object, you’ll find contentid, contenttype, and spacekey.", "name": "", "is_accepted": true } ]
73a628fc1b2da0aefcfcfd66a87f7ce8
hello, for one of our customer, we need to implement a custom feature that will generate a pdf file from an issue, containing all fields set for this issue. the client would like to avoid custom plugin development and would rather work with groovy scripts. the aim is to upload the generated pdf to…
how to programatically export jira issue to pdf?
atlassian.com
2021.17
[ { "text": "hi [@alexis.ramacciotti](/u/alexis.ramacciotti) !\n\ni suggest use lib itext.\n\n[groovy and creating of pdf (itext)](http://groovy-and-grails-for-newbies.blogspot.com/2012/05/groovy-and-creating-of-pdf-itext.html)\n\nfor some next test, i want to create a pdf (later with data of the database) it´s the first time, i combine a java-lib with groovy. it ...\n\nit needed save as text pdf or …", "name": "", "is_accepted": true } ]
b993567bb2bfe6409a042ea5d5dd04a9
for my company i need to create a central ui to crud-administrate organizations and add/remove customers to/from those organizations. i started out with a webwork module. then i looked into the api and found the organizationservice interface. sounds good, i thought. but how to access that service a…
how to handle api access to servicedesk organizations
atlassian.com
2021.17
[ { "text": "here comes the solution:\n\nyou need to export the component as service, then the organizationservice is injected correctly.\n\n@named\n\n@exportasservice({orgadmutilwebwork.class})\n\npublic class orgadmutilwebwork extends jirawebactionsupport {\n\n@componentimport\n\nprivate organizationservice organizat…", "name": "", "is_accepted": true } ]
27976d67ea74216970de5af450126729
hi all, i am writing an add on. i wrote a custom service which should take two parameters from the ui and print it. but it was taking the first property and ignoring the second property. service.class package com.kworks.timeinstatus.services; import com.atlassian.configurable.objectconfiguration…
how to pass multiple parameters to jira custom service?
atlassian.com
2021.17
[ { "text": "hello [@jkirankumar1993](/u/jkirankumar1993),\n\n[image] jkirankumar1993:\n\npublic static final string tutorial = “tutorial”;\n\npublic static final string tutorial1 = “tutorial”;\n\nyour tutorial1 value is still “tutorial” in which i think you wanted it to be “tutorial1” instead (forgot to edit after copy-paste maybe?). t…", "name": "", "is_accepted": true } ]
de26ccd3a7d194357e0b4397a5e3ae49
hi, i would like to create an event listener for versioncreateevent. below is my code: import com.atlassian.event.api.eventlistener; import com.atlassian.event.api.eventpublisher; import com.atlassian.jira.event.project.versioncreateevent; import com.atlassian.plugin.spring.scanner.annotation.impo…
eventlistner for versioncreateevent
atlassian.com
2021.17
[ { "text": "i don’t think annotations are gonna work. i don’t think there’s any component scanning. for fun maybe try the atlassian-plugin.xml.", "name": "", "is_accepted": true } ]
934459b24e60d0e03dc3f7767f21d1aa
we are seeing that using the copy page hierarchy api fails with a nullpointerexception after modifying the page using either of the new buttons: “add emoji” or “add header image”. the exact error is: {"state":"error","finishedpages":0,"rawstatus":{"id":"1426489360","name":{"key":"com.atlassian.con…
copy page hierarchy api nullpointerexception with new emoji titles / page header images
atlassian.com
2021.25
[ { "text": "hi [@georgeslater](/u/georgeslater),\n\nthank you for your effort in reproducing and raising this problem.\n\ni can confirm that there is indeed a problem and we are now tracking it here: <https://jira.atlassian.com/browse/confcloud-72284>\n\nand yes, you are right that the exception is now being surfaced because of the new e…", "name": "", "is_accepted": true } ]
a2eef2fd8de45698cc68ef1cd7871243
hi, we are in the process of developing a forge app. at around 10am aedt a few developers on different branches experienced this issue so we suspect that it might be due to a recent change in the styling of the iframe in forge. is anyone else experiencing this? [[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/a/b/abc9d3fceb647e56992e5eff3ddca72eb78cfb14.png "image") [[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/9/c/9c7cb61977da4f0cebd9f133cd6ca30eb9f3f854.png "image")
custom ui iframe rendering at 16px in height
atlassian.com
2021.39
[ { "text": "ok, the use of absolute positioning will be the problem here.\n\nwe launched automatic resizing a few weeks ago. there is a chance that you changed something in the app / upgraded a package / or ran a deployment recently to trigger the problem.", "name": "", "is_accepted": true } ]
3f447ae37db682c784fa15caf5960dde
i’m new to confluence plugin development, and also to web dev in general, so please bear with me. i’ve written a plugin that adds an web-item to the page tools menu, by extending confluenceactionsupport. when the execute() method finishes, i would like to display a message to the user (an aui messa…
how to show user message in confluenceactionsupport after execute()?
atlassian.com
2021.17
[ { "text": "ok so i felt bad that i couldn’t find a tutorial for you that does what you want. so…\n\n<https://bitbucket.org/dwester42a/sample-confluence-showing-click-javascript>\n\nthe basic of this is from the basic atlas-create-confluence-plugin-module command. so let’s get started. first we’ll add the rest module…", "name": "", "is_accepted": true } ]
a80548757fef1f42873e72fdfb94637d
example app is giving me this error. do you have any idea for why this might happen? my node version is v14.15.5 todo-app-custom-ui> forge deploy --verbose deploying your app to the development environment. running forge lint... error: cannot read property 'length' of undefined typeerror: canno…
error: cannot read property 'length' of undefined
atlassian.com
2021.21
[ { "text": "hi [@odinson](/u/odinson),\n\nhave you run forge register?\n\nalso, have you installed dependencies and built the custom ui resource? you may need to run cd ./static/spa && npm install && npm run build && cd ../.. before deploying again.", "name": "", "is_accepted": true } ]
f3ff0cb1918478dbc941989b7e8a80ad
hi, i am in need to export jira issue to pdf. based on [how to programatically export jira issue to pdf?](https://community.developer.atlassian.com/t/how-to-programatically-export-jira-issue-to-pdf/28521) i can conclude that i will use third-party library to build a pdf file. i do not want to go over issue fields/custom fields programmatically to retrieve the information and would rather prefer …
export issue to pdf/xml
atlassian.com
2021.17
[ { "text": "so there is no way. i had to iterate over issue fields/custom fields and combine xml from my code.", "name": "", "is_accepted": true } ]
112bde8cce968cafeeabfaeb1f15fb39
i’m trying to get the page generated from a velocity template to execute some javascript functions. i have some buttons that should execute their respective functions on click. however, the page simply refreshes whenever i click on the buttons. what is wrong? velocity template: <!doctype html> <ht…
button click on velocity template refreshes page
atlassian.com
2021.25
[ { "text": "hi [@chongjinghong](/u/chongjinghong),\n\nit is refreshing the page because it is a submit button inside a <form>.\n\nyou can change it to a simple button by adding <button type=\"button\"\n\nor you can prevent the form submission like:\n\n<button onclick=\"fetchpageversionsonclick(event)\">\n\n...\n\nfunction fetchallpages(event) {\n\n…", "name": "", "is_accepted": true } ]
e7f654e9c93d282ac76decb7d4cb5c39
dear all, i’m trying to compile a cql statement which searches for text in a page or a content property. however the following does not work (shows no results) while the isolated statements work: cql = text~october or someproperty~september while trying around i found out that also this statement…
cql search with or statements does not work as expected
atlassian.com
2020.45
[ { "text": "dear ralph,\n\ni was reproducing the same calls i made during the weekend and now it works… interesting. let’s call it a glitch and i close this.\n\nthank you anyhow for answering.\n\nkind regards\n\nandreas", "name": "", "is_accepted": true } ]
ffaa465f86b9e3cb72ed8fc011f7e271
good day everyone, am trying out hello world app for forge ui kit with the code below. when i run the code via forge deploy, it displays the hello world but nothing is showed in the chrome browser console. i have check this code at chrome browser web developer console but i cannot find it there c…
cannot find log data via forge ui kit in the chrome browser console
atlassian.com
2021.39
[ { "text": "hi [@esedofredrick](/u/esedofredrick),\n\nyou shouldn’t need to use custom ui here.\n\ni answered the same question you asked here: [how to show or display store record from storage api via forge ui kit - #5 by esedofredrick](https://community.developer.atlassian.com/t/how-to-show-or-display-store-record-from-storage-api-via-forge-ui-kit/51427/5)\n\nyou can’t see ui kit logs in the chrome browser dev tools.\n\nin your above example, you can either r…", "name": "", "is_accepted": true } ]
c98d8c702b49ec083a854177035634eb
so, some recent posts had me thinking a bit. on the [page where you get your api key](https://trello.com/app-key) you have multiple fields to fill out regarding the app icon and allowed origins. is there a way to generate multiple api keys to develop multiple integrations similar to the [power-up management screen](https://trello.com/power-ups/admin)? i have sever…
multiple api keys (apps)
atlassian.com
2021.43
[ { "text": "[image] jrfischer:\n\nis there a way to generate multiple api keys to develop multiple integrations similar to the [power-up management screen](https://trello.com/power-ups/admin)?\n\nunfortunately, not.\n\n[image] jrfischer:\n\nwhat does one do in this scenario?\n\nthis is a bad answer, but the recommendation right now is to register a…", "name": "", "is_accepted": true } ]
874d22f09c1ec38f2d16a241d2dc2e28
so building out an app and it’s time for the “oh crap - i’ve got data that i need to delete when the tenant is no longer a customer- when should i delete it?” discussion. some of this is a recap from discussions i’ve had with other vendors and what i’ve done in the past - but i would love to get atl…
when should i be deleting a tenant's data?
atlassian.com
2020.10
[ { "text": "daniel, we recognise that there are issues in this area of app lifecycle management.\n\ndata retention\n\n<https://confluence.atlassian.com/cloud/data-storage-faq-873871367.html> discusses data retention in general, from atlassian’s perspective:\n\nafter you have been unsubscribed, atlassian retains your …", "name": "", "is_accepted": true } ]
ed51f6f95de39703f361df7228be294e
hi everyone, we have some apps in the marketplace and we have problems with the development version of one of our apps. the key is, when we’re installing this version with the upm, the installation process doesn’t end and it seems to be frozen. looking at the logs we can see a trace of outofmemory…
jira app could not be installed and the process seems to be frozen
atlassian.com
2021.17
[ { "text": "2 questions:\n\nhow big is your app (the jar itself)? (you might be loading a lot of classes when things start).\n\nare you loading any large amounts of data into memory in the constructors, start of any services or just in general when the app starts?\n\nmy guess is that you’re only hitting it sporadical…", "name": "", "is_accepted": true } ]
01eb64cd04256777b839eadebcef8bbf
hi. i have trouble with springscanner with jira 7.10 version. with plugin that developed for 7.2 <?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:atlassian-scanner="http://www.…
sprinscanner resources not found
atlassian.com
2021.17
[ { "text": "the question is avoided, for 7.1x it was necessary to use springscanner v 1", "name": "", "is_accepted": true } ]
00bb17e89a040b12977a51b57ad40027
hi, i’m making and entity. @autoincrement @notnull @primarykey("id") public int getid(); public void setid(int id); public string getname(); public void setname(string name); and then in a servlet a call setname(“patata”) when i click on a button. string name = req.getparameter("task"…
ao entity add null value
atlassian.com
2021.17
[ { "text": "you’ll need to call save after the setter.\n\nfinal myclassname todo = ao.create(myclassname.class); // (2)\n\ntodo.setname(\"patata\"); // (3)\n\ntodo.save()\n\nreturn todo;", "name": "", "is_accepted": true } ]
b8368729ddb70566532ed63af23a5bbf
the [atlassian guide on jwt for connect apps](https://developer.atlassian.com/cloud/jira/platform/understanding-jwt-for-connect-apps/#creating-a-query-string-hash) appears to contradict itself. it instructs us: in the case of repeated parameters, append the encoded ',' character (i.e., "%2c" ) and subsequent percent-encoded values. … but it uses an unencoded comma to separate the values of the ‘repeated’ paramet…
to encode or not to encode, that is the jwt question
atlassian.com
2021.43
[ { "text": "hey there,\n\ni quickly tested it with <https://www.npmjs.com/package/atlassian-jwt:>\n\nconst jwt = require(\"atlassian-jwt\")\n\nconst req = jwt.frommethodandurl('get', '/rest/resource/you/want?repeat=1&repeat=2&foo=bar,buzz');\n\nconsole.log(jwt.createcanonicalrequest(req, false, \"http://example.com\"))\n\n// => …", "name": "", "is_accepted": true } ]
87c4ce91c33b9b0ad60759419a136a97
i am trying to edit a series of pages via the rest api by adding mentions. the user provides the names for a few key values placed on the pages. i am able to get the users’ account ids’, but the mention macro appears to need user keys (see below.) it appears i cannot get the user key due to the d…
rest api - cannot set user for mention macro added via changing page body.storage value
atlassian.com
2019.43
[ { "text": "see my comment here for working around this issue: <https://jira.atlassian.com/browse/confcloud-65748>", "name": "", "is_accepted": true } ]
75c73066a40031b3edd87cf465ce14f3
i’m developing a blueprint plugin where 2 versions of a page are displayed side by side for comparison on a separate page. i am able to get the contents of the versions to show on the page, the problem is the html elements are not rendered. the following is an example: [image] how do i get the htm…
render html elements in a page
atlassian.com
2021.31
[ { "text": "solution: add at:rawxhtml=\"true\" to the xml template. [for reference](https://developer.atlassian.com/server/confluence/writing-a-blueprint-intermediate/).", "name": "", "is_accepted": true } ]
8b78cb7a0d26bac600b4eb86e1968818
hi, i’m writing a plugin that adds some information to the issue details view. therefore i’m using javascript code to add interactions. my vm-template looks roughly like this (first html-elements then the javascript parts) <div id="mycontent">my content</div> <script> document.getelementbyid("m…
execute javascript code when page is loaded
atlassian.com
2021.17
[ { "text": "in your javascript, inject the ‘jira/util/events’ module and bind to new\\_content\\_added with the reason ‘pageloaded’. that’s how i do it.\n\nrequire([\n\n'jira/util/events',\n\n'jira/util/events/types',\n\n'jira/util/events/reasons'\n\n], function(events, eventtypes, eventreasons) {\n\n\"use strict\";\n\n…", "name": "", "is_accepted": true } ]
094e5a776e30007c9e4a7082e368698b
i see the following alternatives and do not know which one is better than the other. a) keep @componentimport annotation on your classes where you require activeobjects like this: @componentimport private activeobjects activeobjects; and in combination with this add the following to the spring co…
what is the best way to use transactional active objects?
atlassian.com
2021.17
[ { "text": "@transaction annotation is not implemented in jira. the only way i know is to create a custom transaction object.\n\n<https://jira.atlassian.com/browse/jraserver-25808>\n\n[image]\n\n[create and use custom transaction management in jira](https://community.developer.atlassian.com/t/create-and-use-custom-transaction-management-in-jira/17265) [jira server](/c/jira/jira-server)\n\nas mentioned in this ticket -\n\n[ht…](https://jira.atlassian.com/browse/jraserver-25808)", "name": "", "is_accepted": true } ]
fc5e696f6e2cee198b22b655dac29e64
is ap.request synchronous/asynchronous? if synchronous how can i turn it to false(asynchronous) or vice-versa?
usage of ap.request
atlassian.com
2021.39
[ { "text": "[@hariprasath](/u/hariprasath), it’s true. you need to specify async function in order to use await expression. did you try like this?\n\nasync function start() {\n\nvar myresponse = await ap.request({\n\nurl: '/rest/api/3/issue/issueid',\n\ntype: 'post',\n\ndata: datastr\n\n});\n\n}\n\nstart();", "name": "", "is_accepted": true } ]
ceba04b58b297329a3b4403ec051c56e
hi, i’ve tried to download jira 7.9 eap (<https://www.atlassian.com/software/jira/download-eap>) for testing, but get access denied error, <https://www.screencast.com/t/hilbfvpgod>. could you please help with it? and related question - is it possible to check sources or just get more info regarding “…
impossible to download jira 7.9 eap
atlassian.com
2021.17
[ { "text": "apologies for the inconvenience, this was a configuration issue that was just resolved. try downloading it again, please.", "name": "", "is_accepted": true } ]
4cebe2e25d4cf77ac0bfa5379ff56c3d
hi, i’d like to sort the values of the report plugin configuration by name. i have a select over the issuetypes, which are provided by a values generator: public class issuetypevaluesgenerator implements valuesgenerator { public map<long, string> getvalues(map params) { map<long, str…
sort jira report configuration options
atlassian.com
2021.17
[ { "text": "some of jira’s internal valuesgenerators use org.apache.commons.collections.map.listorderedmap instead of linkedhashmap. you could try that.", "name": "", "is_accepted": true } ]
4b9e708c94daecca83a35b26e7919c7f
so i’ve got my forge app - i would like to follow proper practices and have my build service deploy it. how? it looks like forge login:ci was removed in 1.5 (<https://developer.atlassian.com/platform/forge/changelog/#removed-in-forge-cli-version-1-5-0> ). trying to login on the build server - i init…
trying to deploy forge app from ci server
atlassian.com
2021.43
[ { "text": "hi [@danielwester](/u/danielwester) ,\n\nwhen the forge cli was originally developed, cicd was supported, but then we dropped support because we ran into a few issues and we figured we would tackle cicd properly as a project rather than shipping partial support here and there. unfortunately, at this stage there’s no fir…", "name": "", "is_accepted": true } ]
b0e2995255280945abe1646018c19ac1
opening by hovering over the trigger for inline-dialog seems to be deprecated, any idea why? and what to use instead? <https://docs.atlassian.com/aui/9.0.2/docs/inline-dialog.html#opening-by-hovering>
opening by hovering over the trigger for inline-dialog seems to be deprecated, any idea why? and what to use instead?
atlassian.com
2021.04
[ { "text": "okay, so you have an explicit element, and the intent is that when a user interacts with the element, they reveal further information.\n\nthis use-case can be handled by the standard “on click” behaviour of inline dialog’s trigger. so long as the icon element is a <button>, anybody that cannot use the…", "name": "", "is_accepted": true } ]