id
stringlengths
32
32
text
stringlengths
0
895k
name
stringlengths
0
33k
domain
stringlengths
5
44
bucket
stringclasses
19 values
answers
list
d7fa60c67c75194aa7be9b30f256ad87
i want to show a flag in my cloud add-on, but it does not fit the little iframe i have (web panel). it would be also more natural to show it on the top of the issue page. i know it is possible because i saw cloud add-ons doing so. how can i achieve that? thanks, jack
how to show a flag outside of the app iframe?
atlassian.com
2021.17
[ { "text": "ok, got it.\n\nit must be ap.flag.create({ instead of ajs.flag({\n\nthanks [@alexter\\_pr](/u/alexter_pr)", "name": "", "is_accepted": true } ]
835e8929073388f8a94b80be70c49624
hi, i am porting one of my cloud plugins to run as a p2 plugin. if i can run my pages in an iframe it would make life a lot simpler for supporting two platforms. in my searches i have noticed the [atlassian connect js](https://bitbucket.org/atlassian/atlassian-connect-js/src/master/) repository. has anyone managed to use this in jira server and if so how do you u…
jira cloud plugin converted to server
atlassian.com
2021.17
[ { "text": "[@paul](/u/paul) given that the p2 infrastructure really differs from connect i would not recommend trying to merge these two. the best way to share a code base is:\n\nshare static resources, more specifically create a front-end which only consumes data from an api.\n\nrecreate the api (both in terms of endpoints …", "name": "", "is_accepted": true } ]
582d2f0d05126705b212773d8fc3f834
i’m able to test my plugin on confluence server but i need to test options within my plugin based on the data center environment. what do i need to update (pom.xml, commands, etc.) to create a data-center instance locally? i want to be able to run “atlas-run” and run my plugin locally. is this poss…
create local confluence data center instance
atlassian.com
2021.25
[ { "text": "dc is just another license on installation. use evaluations licenses as they are valid for a month at least\n\nfor local testing:\n\nuse docker (the [official image](https://hub.docker.com/r/atlassian/confluence-server/) just works fine)\n\nit is also “quite” easy to set up a local cluster with docker. just share the database and shared home with all nodes.\n\n[h…](https://www.dropbox.com/s/dvuvdt3652uk5gd/datacenter-docker.zip?dl=0)", "name": "", "is_accepted": true } ]
8dc4d1ca9b7839cc23d62391b9f04d5e
hi, i made plugin creating project and issue type via rest api. there is a problem i can’t use the issue type in my project (jira shows only 4 available issue types for this project: epic, story, bug, task). is there any way to assign my issue type to the project via rest api? request body of proj…
assign issuetype to project via rest problem
atlassian.com
2021.17
[ { "text": "oh, my dear fellow, [i feel your pain](https://community.developer.atlassian.com/t/issue-type-schemes-via-rest/1270).\n\nwhat we’ve done is to add the issue type, and display a warning in the context of the project(s) that the issue type needs to be added to the relevant issue type scheme. it’s sub-optimal.", "name": "", "is_accepted": true } ]
c7fdf89688ad9d03df9a67de1011b0a5
i’m very new to forge and started to work on tutorials and examples yesterday. after successfully finished hello world examples for custom-ui, i tried to deploy todo-app-custom-ui example following the instruction in its readme. the build for static files was ok. but it fails with the error message…
unable to deploy todo-app-custom-ui
atlassian.com
2021.17
[ { "text": "hello [@iragudo](/u/iragudo)\n\nthank you for your help. i tried your method but it didn’t work out well. (i tried forge deploy before and after your suggested “npm install”, i got the same error)\n\nthough i found one walkaround. renaming .gitignore file to something else. with this workaround, i could deploy the ap…", "name": "", "is_accepted": true } ]
ff7025114de9a0c04c1e6f594e6110ca
hi, i’m trying to fetch the cards in a list, with the card comments, like this: curl "https://api.trello.com/1/lists/{list\_id}/cards ?actions=commentcard&action\_fields=data&actions\_limit=5 &key={key}&token={token}" for one particular list, i get back the an error: { "message":"r…
"requested too many cards with action loads, please limit"
atlassian.com
2020.05
[ { "text": "[image] dmehers:\n\ni decided to fix this by adding a limit=500 when fetching the cards\n\nthis is the correct thing to do. using the since and before parameters, you can continue to page through results to get everything. there is a brief mention of paging here: [https://developers.trello.com/docs/…](https://developers.trello.com/docs/api-introduction#section-paging)", "name": "", "is_accepted": true } ]
ec99b1d5138da6a3b8fe849eac4c82e0
hello, i have a large number of bamboo plans which i would like to enter each default job and add a new capability to the existing requirements. having dug into the rest api, i don’t see any way to do this. does anyone know of an endpoint which can do this for me so that i can script this task? a…
how to create a new build plan requirement via rest
atlassian.com
2021.17
[ { "text": "i don’t think there’s a public api which allows you to achieve the things you want to.\n\nif you want to write a plugin to allow such things, please refer to writing a plugin with [rest plugin module](https://developer.atlassian.com/docs/atlassian-platform-common-components/rest-api-development/rest-plugin-module)\n\nhowever, i encourage you to use [bamboo specs](https://docs.atlassian.com/bamboo-specs-docs/latest/) which allow you to modify bamboo configuration from java …", "name": "", "is_accepted": true } ]
c8c41e42a3b90aa4870299db28d80165
hi - i am trying to update an issue field via the cloud api. i can do this without a problem when the field type is editable - but as soon as i declare the field type as read\_only in atlassian-connect.json i am unable to write to it using the api "jiraissuefields": [ "name": { …
update read only custom issue field
atlassian.com
2020.45
[ { "text": ":upside\\_down\\_face: oh i get it now… so i worked this out i think… read only custom fields can not be directly updated via the api. rather, they serve as a reference or pointer to map another issue property. the mapped property can be either an existing issue property or in my case, an entity propert…", "name": "", "is_accepted": true } ]
4b80e9cd02c024493777a960b751bba9
hello everyone, i’m fairly new to forge and i’m trying to start by writing my own app that will make use of the search api to display some information in a table. when running a ‘forge deploy’. i’m getting the following error: running forge lint... error: unknown: unexpected token, expected ";" …
unexpected token error in confluence search api call
atlassian.com
2021.21
[ { "text": "i believe that to make use of await, you need to make the function async so this:\n\n[image] jimmyseddon:\n\nfunction getsearchresults(searchapi) {\n\nbecomes:\n\nasync function getsearchresults(searchapi) {\n\nmore on async/await: [async/await](https://javascript.info/async-await)\n\ncurious to see if that changes anything.", "name": "", "is_accepted": true } ]
7551af35e33a4ec015d070cd912e0768
hi, i just noticed that the layout of our apps’ overview page has changed – and looks ugly! we use the highlight template, and it’s still set (and still looks the same), but the pages now render in a completely different way. the layout has changed, and it looks like the thumbnails are used to dis…
layout of app overview page has changed
atlassian.com
2021.39
[ { "text": "i think it’s been discussed here mostly: [a peek into marketplace's new app listing page](https://community.developer.atlassian.com/t/a-peek-into-marketplaces-new-app-listing-page/48229)", "name": "", "is_accepted": true } ]
def9a81a93130d6867ad376983190e3b
i’m in the process of building a forge app using the forge storage. at this point i want to push this out to a “real” atlassian instance to see if the solution is able to handle real users. if i later want to reset the forge store - how would i go about that? when does forge delete the data stored…
how do i delete all forge storage data for an instance
atlassian.com
2021.31
[ { "text": "technically, the answer should be “in accordance with the atlassian privacy policy” because that was the driving force behind that number and it is the rule we follow for all data.\n\nbut i understand the desire for data lifecycle to be more clearly communicated in the forge docs. i’ll bring this to o…", "name": "", "is_accepted": true } ]
23b8543e981d2523ef45598e798a7a22
since last week all apps now have weird empty white zone at the left of app iframe (not part of iframe) and it looks really weird for apps that have not white background at that area, like tempo and many other apps: <https://take.ms/0kx3x> do people from jira know about this bug? and when could we ex…
weird white zone at the left of app iframe
atlassian.com
2020.05
[ { "text": "hey [@anton2](/u/anton2) seems to be intentional and not a bug: <https://blog.developer.atlassian.com/change-notice-padding-update-for-jira-cloud-navigation-ui/>\n\nbut it does mention it is a temporary fix.", "name": "", "is_accepted": true } ]
7516ee74b9651ac628b5fe4aadcd0a7a
hi, i’m trying to create blueprint atlassian-connect add-on. so i took example [here](https://developer.atlassian.com/cloud/confluence/multi-page-blueprints-with-confluence-connect/#review-the-atlassian-connect-descriptor) but took “installation failed. the app defined an unknown module (blueprints).” error when uploading the app to my confluence cloud instance. i’d appreciate any help you can give me. thanks in advance. here is my …
installation failed. the app defined an unknown module (blueprints)
atlassian.com
2021.17
[ { "text": "[image] driver:\n\n“installation failed. the app defined an unknown module (blueprints).”\n\nhello [@driver](/u/driver), this error occurs when you install the app in a non-confluence product. i experienced the exact error before when i accidentally removed /wiki in the upm url (<baseurl>/wiki/plugins/servlet/…", "name": "", "is_accepted": true } ]
dcd51f518afdf771eaf6b779c74830ee
the active objects repository is no longer found at <https://bitbucket.org/activeobjects/ao>. any chance it can come back?
active objects repository missing on bitbucket
atlassian.com
2020.05
[ { "text": "here you go.\n\n<https://bitbucket.org/server-platform/ao/>\n<https://bitbucket.org/server-platform/ao-plugin/>\n\np.s. thanks [@kbrazulewicz](/u/kbrazulewicz) & [@aswan](/u/aswan).", "name": "", "is_accepted": true } ]
7ec607e16d4bf9b1b2a5331f4def2373
i’ve checked out the hello world app and now i want to try to run it in production for a test-run. when setting export node\_env=production and running the app, i get the following error: $ node app.js { logging: [function (anonymous)], pool: undefined } [...]/node\_modules/atlassian-connect-express/…
atlassian-connect hello-world app in prod: cannot read property 'replace' of null
atlassian.com
2021.04
[ { "text": "this is exactly what the config.json file is for. you specify the localbaseurl in the development and the production object and the correct value will be used depending on which env you have set.\n\nfor the frist error, have you filled your store values with the correct connection string in the “confi…", "name": "", "is_accepted": true } ]
649a2a18731afb93b9530440969ecf6b
hi, in our add-on we are including a css files that refers to fonts using a relative path. the fonts are also included in the add-on. after being served by the confluence server the css refer to a cache directory and the browser is not able to find the referred font (i.e. opensans-regular-webfont.…
relative url in css loaded as add-on web-resource
atlassian.com
2021.17
[ { "text": "hi all,\n\nsorry for the late reply but we have been really busy in the last months launching the new version of our atlassian cloud add-ons.\n\nthanks you all for the useful hints! we finally managed to correctly include and reference the fonts and the css library. the main problem was the relative url…", "name": "", "is_accepted": true } ]
130a5c458e1112b18f74d546b2c3d4e2
i’m having trouble adding a repository banner client-web-panel to our plugin. i’ve got the following in my atlassian-plugin.xml: <!-- pull request client resources --> <client-resource key="pull-request-resources" name="pull request client resources"> <description> clien…
repository banner client web panel
atlassian.com
2021.17
[ { "text": "bitbucket.web.repository.banner is a web-panel, not a client-web-panel.", "name": "", "is_accepted": true } ]
4ad944a2503bdaccb746926ce71f64df
i have a cloud app that subscribes to jira issue updated and created events via webhook in the app descriptor. after running my app in production for a while, i noticed that for a small number of webhook events the user property is missing in the payload. i see this happening for changes in differe…
why is `user` property missing in issue webhooks?
atlassian.com
2021.17
[ { "text": "if anyone comes across this post, i think i found a possible culprit:\n\nif you configure a trigger in a workflow, for example, link a bitbucket account and create a trigger “transition issue when branch created”. the issue updated webhook payload will not contain any user property.\n\nthis is the email…", "name": "", "is_accepted": true } ]
a7e90abe4e46aad2a48ef6ef5ef91e44
hello all, for our forge-based app dataforms for confluence cloud we need to be able to search for users (e.g. in a userpicker). getting users by name or id (<https://developer.atlassian.com/cloud/confluence/rest/api-group-users/#api-api-user-get> ) does not seem to be possible because the scope rea…
unable to search for confluence users
atlassian.com
2021.31
[ { "text": "[@spall](/u/spall) here we go!\n\n[image]\n\n[new external permissions, authorize method, cli improvements, and bug fixes](https://community.developer.atlassian.com/t/new-external-permissions-authorize-method-cli-improvements-and-bug-fixes/49409/7) [forge announcements](/c/forge/forge-announcements/62)\n\nhi [@dennymiller](/u/dennymiller)\n\nthanks for reaching out.\n\nyou can use the general search endpoint instead: /wiki/rest/api/search?cql=<your\\_query\\_here>\n\n(see: [search …](https://developer.atlassian.com/cloud/confluence/rest/api-group-search/#api-group-search)", "name": "", "is_accepted": true } ]
214581480a050b34dee8a040150632e3
hi, we are seeing push errors occuing with very little information to give to our users. this occurs on save in cloudcannon and is being hit quite often. are there any flags on my end that i could configure to get less of these? is this a known issue? error: command failed: /usr/bin/git push origi…
502 on push over https
atlassian.com
2021.17
[ { "text": "[@ashishghone](/u/ashishghone)\n\nthis is likely due to [a performance issue](https://status.bitbucket.org/incidents/z029156p1svh) we had this morning.\n\neric henry\n\ndevelopment team lead, bitbucket cloud", "name": "", "is_accepted": true } ]
336fee65a98120cbd50a420d2ad6b44f
hi, i am getting a 404 page when trying to access the documentation for the document structure… <https://developer.atlassian.com/cloud/jira/platform/apis/document/structure/>
the jira document structure documentation is returning 404
atlassian.com
2021.17
[ { "text": "we are aware of this problem and the dac team is working on resolving this.", "name": "", "is_accepted": true } ]
4501dbd5190e00fd2334af989bc335fd
hello developers, we’re currently in the process of fixing an issue wrt to user creation via in-product invite or rest api. for tracking please watch and comment on [jracloud-71723](https://jira.atlassian.com/browse/jracloud-71723) and [status page](https://status.atlassian.com/incidents/9r351r9v5cdw) cheers, anne calantog
track here! jira users cannot be created: all directory read only (from in-product invite / rest api)
atlassian.com
2021.17
[ { "text": "the issue is resolved.", "name": "", "is_accepted": true } ]
c9cbc426593e746fd079e45166a20a0f
hi, i would like to be able to get multiple users based on a list of account ids through one rest call. the api also needs to be available for apps. i see that this one exists get /wiki/rest/api/user/bulk but for some reason it isn’t accessible through an app (according to the documentation). is …
how to bulk get users as an app
atlassian.com
2020.40
[ { "text": "i stumbled onto this [confcloud ticket](https://jira.atlassian.com/browse/confcloud-65355) and in the internal comments was a statement that this can be handled already like so:\n\n/wiki/rest/api/search?cql=user.accountid%20in(<accountid>,<accountid>)\n\nlet me know if that works for you?\n\nas for the bulk endpoint not being available in apps…i’ll bring th…", "name": "", "is_accepted": true } ]
9c4062eabd0b87e540570401c4d93149
hi, i have an app listening for the sprint\_deleted webhook. it works on the local environment using ngrok but it doesn’t work on the production environment. all the other sprint-related webhooks being used (sprint\_closed, sprint\_started and sprint\_updated) work fine. is there anything different s…
sprint\_deleted webhook not invoked on production but working on test
atlassian.com
2021.43
[ { "text": "this was “user error”. the changes to web hooks on atlasian-connect.json don’t populate right away when the app is published in the marketplace.", "name": "", "is_accepted": true } ]
3d695978e66ce9fdff79abbf9687c602
hello, i want to write an add-on, which provides a button in the page.metadata.banner and opens up a dialog to fill in information. after submitting this information, i want to persist the data in the database. currently i got the following template (soy): <section id="page-status-dialog" class="…
show dialog with button in metadata banner
atlassian.com
2021.17
[ { "text": "you need to expose the soy template to the page in the atlassian-plugin.xml\n\n<web-resource key=\"\" name=\"\" >\n\n...\n\n<dependency >confluence.web.resources:ajs</dependency >\n\n...\n\n<context >page</context >\n\n...\n\n<resource type=\"download\" name=\"dialog.js\" location=\"<path>/dialog.soy\" />…", "name": "", "is_accepted": true } ]
b571d0d29a1e57fb11ee32cb1e3c85dc
i have an external system which i’d like to integrate with jira cloud. does jira cloud have the option to act as an oauth2 provider? i know that oauth1x is possible, but wondered whether oauth2 is an option. i’m already aware that atlassian connect apps can use the [oauth 2.0 - jwt bearer token aut…](https://developer.atlassian.com/cloud/jira/software/oauth-2-jwt-bearer-token-authorization-grant-type/)
does jira cloud have the option to act as an oauth2 provider?
atlassian.com
2021.17
[ { "text": "not at this time, no. but we are working on bringing a three-legged oauth (3lo) to jira cloud. it’s currently listed as in progress on the [jira cloud platform api - public roadmap](https://trello.com/c/xfys3iku/2-simpler-authentication-options-3lo)\n\nthis work is also currently being worked on for stride apps and is the foundation for jira using it. it’s currently i…", "name": "", "is_accepted": true } ]
8a41ac6bdb09b2fe67d10033c38f5cd3
for example, i recently had to find out how to change the memory for the refapp that runs when running atlas-integration-test. i gave up and opened a forum topic. a google search was useless, as it only returns results on how to change it in production - not how to set it via maven with the sdk dur…
what do you do to find development information?
atlassian.com
2020.10
[ { "text": "to be honest… i think most successful vendors are the ones that stick around long enough to have clocked the hours required to either actually know by experience, have seen the product change historically, are aligned with atlassian product development and have become really really good at searching…", "name": "", "is_accepted": true } ]
4192c019e1a9c8cef117a79bb8d0a94f
i have developed some active objects table that i will be using in a future plugin. i have added the entity definitions in my atlassian-plugin.xml file. when i run my changes on a development instance, the tables are created and work without an issue. however, when i install the plugin on a stand…
active objects tables are not created when plugin updated
atlassian.com
2019.43
[ { "text": "finally found the answer myself. you need to migrate the schema in the upgrade task. in the migrate method run ao.migrate(.class);", "name": "", "is_accepted": true } ]
9ce210d18ae9cca055d9c5a291e10a46
i have a plugin with a task which create a java object, which i want to display on the build result. i managed to write to the database using bandana in my task, but when i run the build, it does not work since the dataprovider is executed before the task writes to the database. how can i tell the d…
bamboo : how to wait for a task to finish
atlassian.com
2021.17
[ { "text": "i added a condition to not display the webpanel if database is empty, and it just worked.\n\n/**\n\n* determine whether the web fragment should be displayed\n\n*\n\n* @param context the optional map of parameters specified in xml.\n\n* @return true if the user should see the fragment, false otherwise\n\n*/…", "name": "", "is_accepted": true } ]
2a51fe8666b447022869abdeb33cd8c0
hi i am new to developing the confluence plugins. i have a space plugin that is creating new spaces from template. i am trying to figure out how to use the java script to validate that the space key does not already exist. any help would be appreciated thanks
validating a spacekey in a blueprint
atlassian.com
2021.17
[ { "text": "easiest way is to call the rest api via ajax and if result is empty, no space exist with this key.\n\nexemple :\n\nfunction existproject(spacekey) {\n\najs.$.ajax({\n\nurl: ajs.contextpath() + \"/rest/api/space?spacekey=\" + spacekey,\n\ntype: \"get\",\n\ndatatype: \"json\",\n\n…", "name": "", "is_accepted": true } ]
1d58fc4d2eb461e544c3a181dc73f2b6
from my connect plugin i call /rest/api/2/mypreferences/locale to retrieve the locale currently set for my user. this results in a error 500 (internal server error). this is the corresponding log: 2017-11-12 16:28:51.500 info 6534 --- [nio-3000-exec-1] c.xqual.jira.xstudio.helper.jirahelper : g…
why does a get request to retrieve the current locale for a user result in error 500?
atlassian.com
2021.17
[ { "text": "hi, [@matthias1](/u/matthias1).\n\nchecking the rest api docs for [get locale](https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-mypreferences-locale-get), it says that\n\napps cannot access this rest resource.\n\nwhich means that there is nothing wrong with your code and this is the expected behavior. you can try [get current user](https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-myself-get), it also returns the locale for you.\n\nbest regards,\n\nian", "name": "", "is_accepted": true } ]
1a40cadc603f3bfa40d2855647177bee
i’m currently trying to get our connect plugin working with connect on forge, but all ap requests seems to return a 403 error. as i tried out customui in the past, in my example i’m using customui next to connect on forge. the same request is working within the customui part but not for the connect …
connect on forge: jira ap.request gives 403 while forge bridge is working
atlassian.com
2021.39
[ { "text": "hi [@m.herrmann](/u/m.herrmann),\n\nconnect auth and forge work differently and require different scopes. you’ll need to add the connect scope equivalents to your manfest, e.g. read:connect-jira or write:connect-jira - see [this section](https://developer.atlassian.com/platform/forge/build-a-connect-on-forge-app/#step-1--get-the-sample-app) of the connect-on-forge tutorial for more.", "name": "", "is_accepted": true } ]
7b4a5907679ef0bb315cd638c8b7e0ac
hello! how can we access these values and change them from the api?
trello rest api - checkitem due dates
atlassian.com
2020.29
[ { "text": "you can see the duedates of your checklist items by calling the\n\nget /1/cards/{id}/checkitem/{idcheckitem}. the due dates should be a datetime value under the due field.\n\nyou can update a duedate of a checkitem using the following api call:\n\nput /1/cards/{idcard}/checklist/{idchecklist}/checkitem/{i…", "name": "", "is_accepted": true } ]
ccf15dc59b939e704e6f72ffd9bd2aeb
hello everyone, i was trying to build a forge app from this repository: <https://bitbucket.org/atlassian/forge-byline-dynamicproperties/src/master/> however, when i execute the “forge deploy” command, it fails with the following error log: deploying your app to the development environment. press c…
can’t build/deploy forge example app (forge-byline-dynamicproperties)
atlassian.com
2021.17
[ { "text": "hi [@nasmussadat](/u/nasmussadat) , welcome to the developer community!\n\ni was able to replicate the same error you got when i did:\n\nclone the repo\n\nrun forge register\n\nrun forge deploy\n\nto fix the issue, you missed calling npm install before running forge deploy. that should do the trick.\n\ncheers!\n\nian", "name": "", "is_accepted": true } ]
ba30eba2031802421723fe1fabc8cb43
hi, i like to update the default values of some properties in the atlassian-plugin.xml those are my properties in the atlassian-plugin.xml: <properties> <property> <key>periodname</key> <name>portlet.chart.field.periodname.name</name> <description>portlet.chart.field.p…
report plugin does not update default values
atlassian.com
2021.17
[ { "text": "probably it just gets cached somehow. it’s doing now.", "name": "", "is_accepted": true } ]
dd690b865d07e6caf1b5de4041736967
hello bois’n’gerls! view the original post [here](https://community.atlassian.com/t5/questions/best-approach-for-developing-2-factor-authentication-plugin/qaq-p/459766). first of all: p2 vs. connect as frank mentioned here “using atlassian connect is not sufficient enough as you can by-pass requests.”. is this 2 years after still an issue? or just inseparable part of the design of connect? as i’m planning to use…
best approach for developing 2 factor authentication plugin
atlassian.com
2021.17
[ { "text": "hi @fiedlermarius,\n\nsimply put, it is not possible to implement custom authentication for atlassian cloud applications. among other reasons, atlassian has a shared authentication layer for our cloud services called atlassian account, so jira cloud does not even have apis that you could extend. addit…", "name": "", "is_accepted": true } ]
354f92479209661e190e2fbb21078cb9
i was looking at the connect documentation on webhooks (<https://developer.atlassian.com/static/connect/docs/latest/modules/common/webhook.html>) and the attachment\_created event is only listed under “confluence webhook events”. it seems this webhook also fires in jira, however i could not find anythi…
is it safe to use attachment\_created webhook in jira cloud add-on?
atlassian.com
2021.17
[ { "text": "hi [@tbinna](/u/tbinna),\n\nwe just added attachment\\_created and attachment\\_deleted events to jira a couple weeks ago and simply haven’t updated the documentation yet. we will get to it asap.\n\ndave", "name": "", "is_accepted": true } ]
702ba13e21df2b583ef7b0ae7321c480
i am trying update forge custom field value using “/rest/api/2/app/field/${cf\_key}/value” endpoint in forge app. update works fine if i use id such as “customfield\_12345” but i am getting this error if i use custom field key as {app-id-uuid}{environment}{extension-key} . info 13:48:46.071 24f…
"oauth 2.0 is not enabled" when trying to update custom field value using field key
atlassian.com
2021.21
[ { "text": "hello, [@mertturkoglu](/u/mertturkoglu),\n\nit seems you are not using the correct key of your field. if you head over to [the documentation](https://developer.atlassian.com/platform/forge/manifest-reference/modules/#field-lifecycle) you will find the following passage there:\n\nthe created field has its key set to {app-id-uuid}\\_\\_{environment}\\_\\_{extension-key} , where:\n\n{app-id-uuid} is the tail part of your ap…", "name": "", "is_accepted": true } ]
0b810222982261844f221fbb149bf0e2
is there any way to get from the rest api which trello boards my user is watching? or alternatively whether my user is watching a particular board?
how to check which boards my user is watching?
atlassian.com
2019.43
[ { "text": "it doesn’t appear that you can get a list of all of the boards your member is watching. is there a place in the trello ui that this is available? i tend to start looking at the network requests happening for things in the ui to lead me to which api resource is being used. \nhowever, you can definitel…", "name": "", "is_accepted": true } ]
7a99c7e46709f603f91edacda5a750fb
we have a jira cloud add-on which we want to migrate from connect to forge. i have followed instructions from [connect and forge together | developer day 2021](https://www.youtube.com/watch?v=5ennhaokaty) and have the connect app ported as a connect on forge app installed on my dev instance. the installation is successful. however i get the …
acjs - "cannot decode webitem anchor" error when using connect and forge together
atlassian.com
2021.39
[ { "text": "hi [@ajay](/u/ajay) ,\n\ni think this error is coming from [here](https://bitbucket.org/atlassian/atlassian-connect-js/src/9cc298035fdb6ce8ac82a613acdcf6a25a33d761/src/host/utils/webitem.js#lines-74). it only goes into this path if there’s hash fragment in the webitem url. i wonder if the leading/ in your /index.html?board.id={board.id}/#/standup webitem url hash fragment is causing the issue?\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
db562d33e9a01cb1e91c38f5ebc7ddda
hi! i have performed a back up for cloud of our main jira instance and then imported it into my own dev environment. this process did not bring over the installed add-ons, which is fine. however, when i attempt to re-install them i receive the following error message: "an error occurred while prov…
add-on installation failure due to user provisioning after back up / import
atlassian.com
2021.17
[ { "text": "hi [@davidm](/u/davidm), this may be due to you having default user groups pending to approve in the user management section of your site administration. we would prefer for add-on installation not to fail in these cases, which is tracked in [ac-2320](https://ecosystem.atlassian.net/browse/ac-2320).", "name": "", "is_accepted": true } ]
0a88bd091ec33d7d517ba0549668a3f5
my colleague told me that when he set up an automation in jira, he can choose the “actor” as “automation for jira”. i have some other automation that uses rest api to perform, so i would need an api key to do that, and it is currently using my own api key, which makes the ticket histories full of a…
can we get an api key of an actor?
atlassian.com
2021.39
[ { "text": "the reason automation for jira can act as a user is because it is an atlassian connect app. it does not use api keys. the connect framework creates special service accounts for apps (hence the “automation for jira” user) and allow for user impersonation if the act\\_as\\_user scope is set upon installat…", "name": "", "is_accepted": true } ]
9b1d67651a18dd1cabda34288ecba09c
hi, i use jira cloud services and use api to get some info about issues. unfortunately, for my case it’s impossible to make just a couple of requests. hence, i need to send near 300 requests to jira and confluence api. i use php. my question: should i make a delay between each two requests? i rea…
how many requests per seconds better to send to api for avoiding troubles with jira services?
atlassian.com
2021.21
[ { "text": "not an atlassian but the only advice i’ve heard from atlassian is to follow the headers. ie when they return rate limit exceeded header - then back off. that said without knowing much about your script - if you’re not triggering the 300 in parallel and doing the sleep in between - you’re fine. you’r…", "name": "", "is_accepted": true } ]
6e18ff5a331cee5a57a1dcf9edfffe1d
hi there! i’ve successfully created a dialog the following javascript: ap.dialog.create({ key: 'ticket-form', size: "fullscreen", chrome: false, customdata: { issuekey: issuekey } }); it shows the module with the key ‘ticket-form’ nicely in a dialog. the problem is that i se…
best way to show a module in a dialog?
atlassian.com
2021.17
[ { "text": "hi jeroen,\n\ni do it this way:\n\n\"webitems\" : [{\n\n\"name\": {\n\n\"value\": \"report problem\"\n\n},\n\n\"key\": \"bitbucket\",\n\n\"url\": \"/bitbucket?v=3\",\n\n\"location\": \"none\",\n\n\"context\": \"addon\",\n\n\"target\": {\n\n\"type\": \"dialog\"\n\n}\n\n}]", "name": "", "is_accepted": true } ]
180e8c28f62f3481235cc2b143def483
it seems that since a couple of weeks ago, general pages with the sizetoparent option once again get the wrong height, resulting in really uncomfortable scrolling behaviour. as you can see in the video, while the page loads and while resizing the sidebar, the content jumps around a lot …
"sizetoparent" general pages once again have the wrong height
atlassian.com
2021.31
[ { "text": "hi [@candid](/u/candid) ,\n\ni’ve reproduced this and created <https://jira.atlassian.com/browse/confcloud-72463> for the confluence ecosystem team to address.\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
0bd9e13f1e7b9b4a068f2f31826b40e5
when i was atlass-debug, everything was good. but when i installed my plug-in into the production environment, i got the following error. i don’t know how to deal with it. please help me find out what’s wrong with it. java.lang.nullpointerexception at java.lang.class.isassignablefrom(native method…
get a error when i deploy my app into jira server,i used activeobjects
atlassian.com
2021.17
[ { "text": "thank you vary much!!!\n\nthe cause of the problem is that my ao entity did not directly inherit net.java.ao.entity.\n\nchange to\n\npublic interface usagelogao extends net.java.ao.entity\n\nthe problem is solved!\n\nmy original code is\n\npublic interface entity extends rawentity<long>\n\n{\n\n@autoincrement\n\n…", "name": "", "is_accepted": true } ]
208d32e2b6bc0ad0ec2aaf76ad5239c6
hi guys, just noticed (and confirmed by others) that the you can’t navigate to apps from the vendors pages. simply go to any vendor page on the marketplace and click on an app’s tile. it will not go anywhere. however clicking on the tile from a search result works. so far, it only fails if you cli…
cannot navigate to apps from the vendor page
atlassian.com
2021.39
[ { "text": "[@yvesriel](/u/yvesriel) [@boris](/u/boris) [@david.toussaint](/u/david.toussaint) [@raimonds.simanovskis](/u/raimonds.simanovskis) thanks all for flagging this issue. we have identified the bug and implemented the fix as necessary. could you please try again and confirm it is working as expected now?\n\ncheers,\n\nsean", "name": "", "is_accepted": true } ]
f599181a7d84163e2e1188601a31273a
i have a forge app with this structure: src |-- admin | |-- index.js |-- panel |-- index.js how can i define two functions which refer to the handler from those sub-directory, instead of put 2 js files to the src? the below code does not work for me. function: - key: admin-page-r…
forge function - how to reference to handler file in sub-directory
atlassian.com
2021.21
[ { "text": "based on the error message i see when trying to repro it, i don’t think you can do any sort of pathing in your app’s manifest.yml:\n\nfunction handler property ‘test/best.handler’ must be in format <module>.<function>\n\nhowever, a workaround for this might be to have a top-level module that you impor…", "name": "", "is_accepted": true } ]
25aadce31e89c16daadcf8c71e1014c4
is there any way to update the parameters of a macro by using the rest api? i want the user to be able to change them while in view mode, so i should have all the necessary info (pageid, macroid, space, etc). is this possible? also, is there a way to create a new page version for the history while…
how to update macro parameters via rest api
atlassian.com
2021.31
[ { "text": "[@philipfeldmann](/u/philipfeldmann) you can achieve that using the update content api: <https://developer.atlassian.com/cloud/confluence/rest/api-group-content/#api-api-content-id-put>\n\na new page version will be created once you update the content.\n\ncheers", "name": "", "is_accepted": true } ]
bda610d34adbd80e9c7c29854ae1790f
the <https://bitbucket.org/atlassian/atlassian-connect-express/src/master/> readme.md says about the config.json: // "logging": function, //optional - function that gets executed every time sequelize would log something. probably this documentation is not correct. it is possible to fill in the…
documentation issue in ace
atlassian.com
2019.43
[ { "text": "hi [@atlassiandev](/u/atlassiandev), \ni’ve created a product issue on this, see <https://ecosystem.atlassian.net/browse/acejs-148> \ncheers, \nanne", "name": "", "is_accepted": true } ]
32729000bb6ff6a883841c74cafdbe88
hi, i have created an event listener for versioncreateevent. on a new project, i have add a version (this is the first version). but the event listener is invoked 6 times. tried a couple more times. every time i add a version, the event listener is invoked 6 times. does anyone know why this is happ…
eventlistener is invoked 6 times for versioncreateevent. why?
atlassian.com
2021.17
[ { "text": "[@daniel](/u/daniel) miraculously, it works fine now. its being invoked just once. i didn’t make any changes. don’t know what changed. thanks anyway for your help.", "name": "", "is_accepted": true } ]
d118243646e8b1a960a779a7940f3895
hi folks i wonder how the stack trace in atlassian-confluence.log can be reduced. we currently have up to 300 lines of stack trace per issue, for me as system admin only the first three are relevant. i have placed this question to the confluence community ([see here](https://community.atlassian.com/t5/confluence-questions/how-to-disable-stack-trace-in-confluence-log/qaq-p/1130870?utm_source=atlcomm&utm_medium=email&utm_campaign=mentions_reply&utm_content=topic)), they suggested to place the qu…
how to disable stack trace via log4j for confluence server log
atlassian.com
2021.31
[ { "text": "hi,\n\ndid you find a solution?\n\ni got it to work so far, but did not dare to use it in production …\n\nim using confluence server 7.4 lts, in my log4j.properties, there is the line:\n\nlog4j.appender.confluencelog.layout=com.atlassian.confluence.util.patternlayoutwithcontext\n\nit seems that atlassians pat…", "name": "", "is_accepted": true } ]
6a3541b8e275bcf71e7aa3faee870eab
hi, we’re trying install the atlassian sdk >>> v8.0.16, in order support some in-house apps / addons we’re developing. we encountered errors. and now we are reciving that error: (in addition – please also see below some ‘versions outputs’) error: c:\users\jhermonx095546\main>atlas-package [i…
issues with atlassian sdk 8.0.16
atlassian.com
2020.29
[ { "text": "thanks for the reply.\n\nwe managed to fix the issue by exporting the certificate from the browser and importing it to the keystore.", "name": "", "is_accepted": true } ]
d52731870f976162e29f4bdcb323b18b
hi all, i extended my app descriptor to created a new [action in the request view](https://developer.atlassian.com/cloud/jira/service-desk/customer-portal/#request-view-action) of jsd. the descriptor part looks as follows: { "servicedeskportalrequestviewactions": [{ "key": "sd-portal-request-view-action-my-action", "name": { "value": "my action" }, "url": "/sd/portal/request/vie…
how to open jsd request view action in dialog with header?
atlassian.com
2021.17
[ { "text": "hi [@tbinna](/u/tbinna),\n\nthanks for bringing this to our attention. i have confirmed that we do indeed support setting the header value but a bug was causing your action not to show if you didn’t have the chrome option defined in target.options.\n\nthe fix for this should be live soon.", "name": "", "is_accepted": true } ]
b553a30b78a7fa0f3b557746d452df78
hi i have web panel in descriptor (jira 7.x.x) <web-panel key=“timereports-time-entry-panel” name=“time entry” location=“atl.jira.view.issue.right.context”…> … it works fine for issue view, but in project view it can not find resources and failed with error ‘angular is not defined’ with issue …
webpanel for issue view does not work for project view
atlassian.com
2021.10
[ { "text": "i may have misunderstood, but have you defined the following three contexts in your <web-resource> within the atlassian-plugin.xml file:\n\n<context>jira.view.issue</context>\n\n<context>jira.navigator.simple</context>\n\n<context>jira.navigator.advanced</context>\n\nthese contexts should be in the <web-resou…", "name": "", "is_accepted": true } ]
1eaff360edbc83cafe6defea81274e75
hi guys, we are using a web item located at the issue navigator, as a button in the button menu of the top-right side (jira.navigator.pluggable.items), where are located other elements as the export dropdown, the search-share button or the bulk change option. the problem is that, days ago, our but…
issue navigator web item button is not showing name and it's wrong aligned
atlassian.com
2021.17
[ { "text": "hi [@alvaro.aranda](/u/alvaro.aranda),\n\nwe’re aware of the issue: <https://ecosystem.atlassian.net/browse/acjira-1391>\n\ndave", "name": "", "is_accepted": true } ]
81911e77047fa3a7e16678760a9523d2
hi, i went through the documentation many times and looked at the code sample but i can’t figure out how to use the feedback & status apis. per my tests, my understanding is that my cloud app will receive a webhook call app\_data\_uploaded for every “app data” uploaded by the server app (+ 1 call li…
how to properly use the feedback/status apis
atlassian.com
2021.25
[ { "text": "hi [@improwiser.engineeri](/u/improwiser.engineeri),\n\nfor the issue of not knowing how much app data will be uploaded, we recommend using a label with each upload and at the beginning send a manifest of all the files you’ll be sending and their labels so you can track them as they come in, which is the second option that you’…", "name": "", "is_accepted": true } ]
5dd54e47e5d707cc30949731baae88e3
hi guys, i am trying to set a behavior, but it is very hard because i do not have any coding background. the idea is that the ticket creation screen would hide/show fields depending on what the user chooses. i just need the screen to change depending on what the user chooses. there are 3 options i…
need help with writing a behaviour for script runner
atlassian.com
2021.17
[ { "text": "hi. we’re talking on reddit also. an example is here:\n\n[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/6/0/60c945a295e556b958330f8e901ddd07a947d591.png \"image\")\n\ndef field = getfieldbyname(\"standards\")\n\ndef otherfield = getfieldbyname(\"other\")\n\nif(field.getvalue() == \"mycoolvalue\"){\n\notherfield.sethidden(true).setrequired(false).setformvalue(\"\")\n\n} else{\n\notherfield.sethidden(false).setrequ…", "name": "", "is_accepted": true } ]
b95a30910838afe8eeb1dd6087f4ef0b
hi people, i can use the api project key and user token to view cards in trello rest api. up until recently, i could also post files onto those trello cards as attachments using the rest api. all of a sudden, now i can’t post. is the api partially broken at the moment or has something changed with …
trello rest api post permissions broken?
atlassian.com
2020.45
[ { "text": "[image] markwarburton:\n\ncannot post //1/cards/{card id deleted}/attachments\n\nbased on that error, it looks like you’re trying to post to //1/cards/ instead of /1/cards/. does updating that make a difference?", "name": "", "is_accepted": true } ]
588043df3337e26cd585878c3508797f
the [docs about the app descriptor](https://developer.atlassian.com/cloud/confluence/app-descriptor/) have this to say about the apiversion field: the intention behind the api version is to allow vendors the ability to beta test a major revision to their connect app as a private version, and have a seamless transition for those beta customers (and existing custome…
major new app revision with base url change
atlassian.com
2020.05
[ { "text": "not sure about the api version, but we switch the base url between releases.\n\nfor example: [app-server-1.mydomain.com](http://app-server-1.mydomain.com) for the current release, and next release might be [app-server2.mydomain.com](http://app-server2.mydomain.com).\n\nwe can host the next release of the app whoever app-server2 is, put the new version in the marketplace …", "name": "", "is_accepted": true } ]
5eb90c5ae8ca591346f226e14b566e3d
hi all, is there a way to create headers with element? want to add some structure to the data i display, and currently, the only option is using bold text as a headline which looks rather subpar. is there a possibility to also add headers such as h1-h5 or something like that? also, what about spe…
forge ui kit - headers and text color in
atlassian.com
2021.10
[ { "text": "just an update on the timeline, heading should be in the next release (1.5 weeks out)", "name": "", "is_accepted": true } ]
62239307cd0fb2c4ec81dbeb32091e68
when i try import new issue (/rest/api/2/issue in jira software cloud) and try populate a float type field jira always responds with below error. “errors”:{“customfield\_10412”:“specify a number for the custom field (below 100,000,000,000,000)” i have tried both string and double type for vba. no s…
issue with float type field "specify a number for the custom field below ..." error for small values
atlassian.com
2021.31
[ { "text": "turned out to be the format issue with the json. fixed myself. thank you.", "name": "", "is_accepted": true } ]
2e65a926223b896f6c97c15338a83bc0
hi all, am just getting started in jira plugin development. i have gotten the tool chain installed on my new laptop, according to the atlassian sdk tutorial. i have set this up exactly the same as my old machine. all seems to be working ok until i run the command ‘atlas-create-jira-plugin’. dur…
errors downloading dependencies
atlassian.com
2020.34
[ { "text": "this seems to be a java issue:\n\nsolution 1: configure java 7\n\nit is need to enable tls 1.2 protocol with java property in the command line\n\nmvn -dhttps.protocols=tlsv1.2 install\n\ninstall is just an example of a goal\n\nthe same error for ant can be solved by this way\n\njava -dhttps.protocols=tlsv1.2 -…", "name": "", "is_accepted": true } ]
f919b1556548103005fd848ec3399e4f
hi all, i have an event listener, which listens to events when comments are added/edited and when issues are updated. when an issue is updated, i need to check for the updated value, then prompt a message depending on the condition. how can i prompt or show a simple pop-up message from the eventli…
show pop-up message in eventlistener
atlassian.com
2021.17
[ { "text": "i think you need to get the separation of frontend and backend straight. you will not be able to show any popup from java, you need to do this in javascript on the client side.", "name": "", "is_accepted": true } ]
c3295afc87fea956293325206d216544
using aui 8.5.1 from here: <https://docs.atlassian.com/aui/8.5.1/docs/buttons.html>. i would like to use tabs and other more sophisticated controls but of course i start small to ensure i have the proper understanding. i copy this line into my code which is supposed to render a blue button of a standa…
correct aui version for proper rendering
atlassian.com
2019.47
[ { "text": "have a look at: [ace and aui 7 and 8](https://community.developer.atlassian.com/t/ace-and-aui-7-and-8/33179/2)", "name": "", "is_accepted": true } ]
28d28630621d1e9ea2bdee22e8c77ed9
hi people! somebody knows how to know the path of a javascript webresource-file inside another javascript webresource-file in a custom plugin? currently i have a javascript file that uses “dynamic load” in a script tag var script = document.createelement(“script”); script.src = “[https://mraddon.…](https://mraddon.github.io/xxx/bookmarklet.js)
how to know the path of a webresource inside a javascript webresource
atlassian.com
2021.17
[ { "text": "[@raulpelaez](/u/raulpelaez) the problem is that your are dealing with the bundling & compression logic of jira. as such it is more difficult to assume the location of the script. if you are sure that the other script is in the same location you should be able to load the file using a relative path as javascript/css…", "name": "", "is_accepted": true } ]
10df5ec508554ac4a6a3592900fabe30
hi hi, i want to detect a project is a software project (scrum/kanban/basic software) or not? is there any way to detect it? thank you so much,
how to detect a project is a software or business?
atlassian.com
2020.10
[ { "text": "we can detect via project type key.\n\n<https://docs.atlassian.com/software/jira/docs/api/7.6.1/com/atlassian/jira/project/type/projecttypekeys.html>\n\nproject. [getprojecttypekey](https://docs.atlassian.com/software/jira/docs/api/7.1.5/com/atlassian/jira/project/project.html#getprojecttypekey--)() = projecttypekeys. software\n\ncheers,", "name": "", "is_accepted": true } ]
52d300ed9dbd5fb72706b9ae39698e99
i have an admin web item. it loads the page, then the page hits the rest api to get the field values and sets them. if the user tries to navigate away, without changing anything, the dirty form confirmation comes up. how do i turn this off? i want it disabled entirely for this page, even if the us…
disable dirty check?
atlassian.com
2020.05
[ { "text": "figured it out. searched to find documentation and there was none. great, another undocumented feature that gets activated by default! fun times! i love atlassian products so much!\n\ndisable it with the following css class on your form: ajs-dirty-warning-exempt.\n\ni found this by inspecting the search…", "name": "", "is_accepted": true } ]
9a36365ea9da652d8bd45c19a47e2ace
i am trying to get a bit more understanding of the forge architecture and best practices on app design with regards to custom fields. i believe back in jira server/dc land it was a thing to provide custom fields with your jira plugin. as i understand your jira plugin could render any ui for your cu…
are custom fields back for real?
atlassian.com
2021.39
[ { "text": "custom fields are back! we want to make them great again;) :blush: :rocket: :muscle: :wink:\n\nwe have finished recently work on custom filed types, custom field object type, context configuration extension point, support for forge custom fields on create issue view, and other smaller improvements. a …", "name": "", "is_accepted": true } ]
7cdbefda3eda92365e4e5140811790f1
can old forge apps be deleted through the developer console? i have some apps that are no longer deployed and some that i needed to register new keys for to work around forge issues. they still show up in the developer console and i am wondering if it is possible for me to delete them. either throug…
deleting old apps
atlassian.com
2021.39
[ { "text": "i’m not aware of a way to achieve this via the cli, but you can indeed delete apps via the developer console (‘settings’ => ‘delete app’) as long as they are not in use by anyone (‘overview’ => ‘total installation count’ is 0), otherwise the deletion is refused:\n\n[image]", "name": "", "is_accepted": true } ]
18039a997332db80eb95f91bcbdd8ef6
hi team. loving forge. it’s made great progress in the last few months. the jira project page module is great, but (like connect in the early days) enforces a large amount of padding around the app and a mandatory title. is there any possibility these two items could be more configurable in future?…
extra flexibility with jira project page and custom ui
atlassian.com
2021.17
[ { "text": "have you tried using the layout property? if i remind correctly using layout: basic will remove the padding and the mandatory title. see the last entry in the properties table [here](https://developer.atlassian.com/platform/forge/manifest-reference/modules/#jira-project-page).", "name": "", "is_accepted": true } ]
3ef255831d21d767a1b07d4fb379cee5
i can find some articles about other products (<https://confluence.atlassian.com/bitbucket/rate-limits-668173227.html?_ga=2.114561922.42397280.1495724544-1600246539.1495571550>) but not for jira cloud. update - i suppose i’m looking for an update to [https://community.atlassian.com/t5/answers-develope…](https://community.atlassian.com/t5/answers-developer-questions/atlassian-connect-rate-of-requests-limit/qaq-p/479325)
are there rate limits for jira cloud apis?
atlassian.com
2021.21
[ { "text": "hi all!\n\nthere is already a rate limiting mechanism in place to protect customers instances, to keep then usable. the mechanism is used for all endpoints including rest apis. our jira sres try to tune them to not harm our customers. there might be some situations when sres need to change standard th…", "name": "", "is_accepted": true } ]
fd323ad0d0526677efad63459d6ed022
hi, i’m getting errors in my app when a confluence group name contains a “/” (forward slash). i.e. a group called “ateam/intro”. when i do a call to the confluence api, with the uri: https://your-domain.atlassian.net/wiki/rest/api/group/{groupname} i.e. https://your-domain.atlassian.net/wiki/re…
confluence rest api and group name with "/"
atlassian.com
2020.45
[ { "text": "here’s an announcement about deprecations in july around various group related endpoints [6 new group apis and 2 group api deprecations for confluence cloud](https://community.developer.atlassian.com/t/6-new-group-apis-and-2-group-api-deprecations-for-confluence-cloud/40358)", "name": "", "is_accepted": true } ]
9d9be5aef2552bbb8fee8410451c3fc7
good afternoon. we have an issue from an eventual customer. is it possible to see next price for 38 jira users (should be $19, $0.5 per user, [timesheet reports & gadgets | atlassian marketplace](https://marketplace.atlassian.com/plugins/jira-timesheet-plugin/cloud/pricing)) [[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/e/5/e56c7f1b7a4fde7c78e9becff398e0da5298beb8.png "image.png") ps my developer instance shows proper price. thank you.
possible price issue
atlassian.com
2021.31
[ { "text": "hi [@avelit](/u/avelit), i’d suggest opening a marketplace issue in the [vendor service desk portal](https://ecosystem.atlassian.net/servicedesk/customer/portal/9/group/30)", "name": "", "is_accepted": true } ]
feb1de8e5c26f3bf250055604ed5208f
the accountid’s that apps are able to interact with - are they unique to a particular instance/product? for example, if i have an app an installed on 2 jira instances located at <https://instance1.atlassian.net> and <https://instance2.atlassian.net>. if andrea has an account on both of these instances…
question about accountid
atlassian.com
2021.04
[ { "text": "for global end user accounts (doesn’t include service desk users), the following definitely holds:\n\natlassian user accounts are global, and their immutable identifiers are unique in the global domain of account ids. those identifiers will be reported consistently by all systems backed by atlassian a…", "name": "", "is_accepted": true } ]
e52ce0aa4121baf01a1d4c1e38149a6a
hi, new to using forge. my app uses ui-kit and some confluence rest calls work with the permissions provided, whilst others return a 403 (forbidden). if i use .asuser(), the request returns a successful 200 ok response. the rest endpoint i am attempting to use is adding a user to a group: let bod…
.asapp() permissions return 403 response
atlassian.com
2021.31
[ { "text": "replying to let others know if they are having the same ‘issue’…\n\nturns out my user key was set as \"value\" and not value. this meant that the body header was being set as:\n\nbody: {\"accountid\": \"\"value\"\"}\n\nalso as a side note, my initial code block should have used:\n\nlet bodydata = `{\"accountid\": \"${…", "name": "", "is_accepted": true } ]
0d736a62642a51c6bb28843cb33d6e88
hi there, still new in jira dev, and i need your help, can someone can give a full plugin skeleton that i can build with : atlas-mvn package and that can be upload in jira (7.12+ or 8.0+) without error or waiting for ever that pluggin upload ? i use atlassian-plugin-sdk-8.0.7 the default skelet…
plugin sdk skeleton for jira server
atlassian.com
2021.17
[ { "text": "i have found the problem\n\ni remove the add blocker named : ghostery\n\nnow it works fine …\n\nsorry for this, it was the add blocker in the end, it was working fine few month ago …\n\nthanks for helping\n\nyann", "name": "", "is_accepted": true } ]
180517f85917818f26c4813234c3ef4f
hi, i develop a custom report plugin for jira. i’m using the following javascript function: // data is an array of objects, like: [{values: [], time: {}}] function buildtabledata(data){ var tabledata = []; for(var i=0; i<data.length; i++){ var values = data[i].values; var …
.push is not a function
atlassian.com
2021.17
[ { "text": "a closer look showed that parts of an older version of the plugin got cached, where tabledata was not an array…", "name": "", "is_accepted": true } ]
1698d4321f5b3025244c92be8a6cc1d8
i’m building a tool to check if my organization’s trello members are still complete and no persons are missing. i implementing this by matching “fullname” from the /1/organizations/xxx/members rest call (xxx is my organization) to my own list. i expect the same output from the rest call as i get fr…
change fullname as returned by organization members rest call
atlassian.com
2020.50
[ { "text": "i don’t know specifics on how/why it works the way it does.\n\nmaybe this help article shines some light on it? <https://confluence.atlassian.com/cloud/blog/2019/05/upcoming-changes-to-atlassian-account-profiles>", "name": "", "is_accepted": true } ]
b547a3de660f21a1d7e717fea51ed596
in our app we have dynamic macros with rich-text bodytype. we now have issues with other macros, like the jira macro, not showing correctly in our macros. we make use of /rest/api/contentbody/convert/view?expand=webresource.superbatch.metatags,webresource.tags.all to get the js and css needed to d…
show macros within dynamic macros
atlassian.com
2021.10
[ { "text": "thanks [@julia](/u/julia),\n\ni have created [confcloud-71683](https://jira.atlassian.com/browse/confcloud-71683). i suspect the root cause is the same as [confcloud-71603](https://jira.atlassian.com/browse/confcloud-71603) so i will follow this up with the confluence team.\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
b286cd718edee1c2cb57ad691fbf72ab
hi forge community, i have been trying to figure out if i could export individual jira issue onto a custom word template. i have been playing with forge for awhile but i am not confident that it is possible to export jira issues to a custom word template using forge. does anyone know if it is possi…
export individual jira issue to a custom word template
atlassian.com
2021.39
[ { "text": "[@s1093](/u/s1093),\n\ni’m not aware of any forge modules that extend the “export word” feature; hence, there isn’t an easy way to just inject your word template. that means reproducing all the capabilities of that feature in your forge app. and, that feature is a very old feature of jira, so it’s built into jira…", "name": "", "is_accepted": true } ]
426c3e5eb3144bfb6991323adfa81227
hi, i am trying to remove a user in jira cloud using rest api <https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-user-delete> from an app. from rest client like postman it works just fine but from java test case it is not working, here is the test case: @test public void …
delete user from app
atlassian.com
2021.17
[ { "text": "[image] laszlo.cseko:\n\na found that documentation says, apps cannot access this rest resource.\n\nam i getting 401 because i am calling it from an app even if acting on behalf of admin user?\n\nthat is correct. the documentation is accurate: an app can’t use that rest api, even if it is impersonati…", "name": "", "is_accepted": true } ]
02d353b4390d4437cd412a4a0673a4f8
create a page tree like so: container page parent page child page now move “parent page” underneath “container page” (using the sidebar or the move page menu). the page tree now looks like this: container page parent page child page “child page” is now a descendant of “container pag…
moved child page cannot be found through ancestor query
atlassian.com
2021.10
[ { "text": "hi [@candid](/u/candid),\n\nthank you for taking the time to explain this issue so clearly. i’ve reproduced it and have consequently created <https://jira.atlassian.com/browse/confcloud-71276> for the confluence team to address.\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
3ce10d15771a6fe6e39884fc8f4dc30c
is there any way to lock the backlog so issues can’t be moved? my team organizes ticket priority with the backlog from top to bottom. i am trying to prevent tickets from being moved around. thanks
lock the backlog in sprint
atlassian.com
2021.17
[ { "text": "hey [@cpriestley](/u/cpriestley),\n\nyou can do this by removing the schedule permission in your project’s permission scheme for everybody (except maybe admins).\n\nthis will block people from moving issues in the backlog.\n\ncheers,\n\npeter", "name": "", "is_accepted": true } ]
b60056144617d64cfe78a7c75cb4e152
hello, we are developing a wide range of plugins, using different technologies (kotlin, groovy and java). at the moment we are trying to add our first integration tests, but to no avail. we couldn’t find any piece of documentation that actually works when updating dependencies to current versions.…
integration testing in jira server
atlassian.com
2021.17
[ { "text": "adaptavist’s arquillian integration for atlassian products may be useful for you: [atlassian-arquillian-containers](https://bitbucket.org/adaptavist/atlassian-arquillian-containers/src)\n\nall of our integration testing is implemented with the above.", "name": "", "is_accepted": true } ]
94eba2920b263dddd0877d5ef0dd6f29
hello, i am attempting to kick off an export via the api and then retrieve its status as described here: <https://developers.trello.com/docs/automating-exports> i am able to kick off the export successfully and retrieve the export id. however, when i attempt to check the status of the export, i recei…
"invalid id" error when retrieving the status of an export via the export api
atlassian.com
2021.21
[ { "text": "i verified that the id was indeed included in the list, but i think i figured out the issue.\n\nthe documentation lists the uri for retrieving the export status as:\n\nhttps://trello.com/1/organizations/{orgidorname}/exports/{exportid}?key={key}&token={token}\n\ni believe there is a slash missing after th…", "name": "", "is_accepted": true } ]
a9b6fe278311a397754f70192d888e13
currently i’m experimenting with the following api method: get /wiki/rest/api/user/bulk/migration <https://developer.atlassian.com/cloud/confluence/rest/api-group-users/#api-api-user-bulk-migration-get> when i add a user name as query parameter, the response just includes the username, and no accou…
user keys, and user api migration / conversion
atlassian.com
2021.31
[ { "text": "hi marc,\n\nthe api should still work. i just tested it myself and when i had the correct username wiki/rest/api/user/bulk/migration?username=correct it returned a response with the username and accountid but when i had the wrong username wiki/rest/api/user/bulk/migration?username=wrong, the response …", "name": "", "is_accepted": true } ]
713897d505102c88d2c9c1c8e13675bf
starting out jira development and trying to have js trigger on every page. created a skeleton plugin and added some js to the resource but nothing is happening. wondering what i’m doing wrong. atlassian-plugin.xml: ${project.description} ${project.version} i…
trying to use web resource for js
atlassian.com
2021.17
[ { "text": "[@kjacobs](/u/kjacobs),\n\nyou will need the context to specify when jira will load your javascript, for testing you can use\n\n<context>atl.general</context>\n\ni’m wondering if maybe your code is running before the page be rendered;\n\ncan you try below example?\n\najs.toinit(function() {\n\nalert('hello world')\n\n});\n\n…", "name": "", "is_accepted": true } ]
61a4d2af84c0a1676b082a3848a83659
i am not able to build my plugin due to the following error: [info] --- maven-jira-plugin:6.3.15:generate-manifest (default-generate-manifest) @ wlstmdimport --- [23/260]…
java.lang.arrayindexoutofboundsexception with maven-bundle-plugin
atlassian.com
2021.17
[ { "text": "it looks like either your app or one of your dependency jars (de.westlotto.jira.plugins.stmd:wlstmdimport) has been built with java 9 or newer, while version of bnd tool does not support that yet. i’d look into getting an older version of the corresponding binary or recompiling your code for java 8,…", "name": "", "is_accepted": true } ]
0e17ac013fdab96629ec91cd593203e8
hey everyone. i wanted to internationalize my addon so users can use the addon in their jira locale. i’ve used this article as my starting point: [cloud internalization](https://developer.atlassian.com/cloud/jira/platform/internationalization/), and the strings that can be translated are getting translated and that’s all fine. the problem is that, as the article from the l…
translating cloud addons
atlassian.com
2021.17
[ { "text": "hi,\n\ni think they readded timezone and locale again.\n\nyou can use:\n\nap.user.getlocale((locale) => { })", "name": "", "is_accepted": true } ]
ecd11e19a6e7eb6c206526ca51f274e5
hi, i’m creating an app using .net in c# to create cards on a trello board but i can’t make updates to the custom fields. i already scoured the api documentation and the internet but cannot make it work. the code that i’m using to update the custom field value on the card is the following: priva…
cant make updates to custom field items on cards
atlassian.com
2021.31
[ { "text": "if someone has the same problem, i managed to get trello to update the custom fields with the following code:\n\nusing system.net.http;\n\nusing system.net.http.headers;\n\nusing system.text.json;\n\nusing system.collections;\n\nprivate static async task<string> putcustomfieldsasync(string cardid, string customf…", "name": "", "is_accepted": true } ]
fecf3433cacfe25fb7615e5ce0f9843d
hi, first: building power-ups and interacting with trello is a lot of fun, and the examples in glitch are stellar. now, for my question: while i’m playing with the api, i’d like to build a tiny power-up to include api debug information like what webhooks i’m running, etc. now, i thought the trello…
confusion between power-up client / getrestapi and client.js rest api helper
atlassian.com
2021.21
[ { "text": "trellopowerup.getrestapi will give me access to client.js rest api , but i think that are actually 2 separate things, right?\n\ncorrect, client.js is separate from power-up.js and the rest client it gives you. [client.js](https://developers.trello.com/docs/clientjs) is a small, api wrapper that provides some helper methods for interacting with…", "name": "", "is_accepted": true } ]
4f9560b1e09a6ec39d6941dcfd0175a7
hi everyone, i see that the new querypermissions.overridesecurity() method in 8.0.0-m0007 doesn’t take a user. but the user may be needed not just for security – there are jql functions like currentuser() and the like, does this change mean they’ll stop working in “override security” mode in jira 8? …
jira 8 searchquery: user vs "override security" mode
atlassian.com
2021.17
[ { "text": "hi [@pzvyagin](/u/pzvyagin),\n\nthanks for raising this. yes, we realised recently that removing applicationuser from overridesecurity was a wrong step. we’re now working towards fixing this in eap05.\n\nkamil", "name": "", "is_accepted": true } ]
be125217271687424a9a34fba38ad3bb
i hava a problem with loading plugin because of osgi.wiring.package=bsh error. couldn’t really find solution. my plugin fail to load. my dependency <?xml version="1.0" encoding="utf-8"?> <project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instan…
plugin fail to load - osgi.wiring.package=bsh
atlassian.com
2021.17
[ { "text": "sure. i put together a sample at:\n\n<https://bitbucket.org/dwester42a/example-jira-events-with-lifecycleaware>\n\nat [bitbucket](https://bitbucket.org/dwester42a/example-jira-events-with-lifecycleaware/src/aaea4c448d27e03aa8d935132b15e37066a88df1/pom.xml?at=master&fileviewer=file-view-default#pom.xml-45) the sal-api gets imported:\n\n<dependency>\n\n<groupid>com.atlassian.sal</groupid>\n\n<artifactid>sal-api</artifactid>\n\n<version>3.0.0</version>…", "name": "", "is_accepted": true } ]
1cc4d7ec325e9c60b4b76ce594c0575e
hello, i manage a version upgrade from jira 7 to jira 8.2. i’m working on upgrading existing jira plugin written in the company. in the atlassian-plugin.xml file, there are many atlassian conditions classes used : <condition class="com.atlassian.jira.plugin.webfragment.conditions.isissueeditablec…
jira plugin : com.atlassian.plugin.web.conditions.conditionloadingexception: could not load 'com.atlassian.jira.plugin.webfragment.conditions.isissueeditablecondition'
atlassian.com
2020.10
[ { "text": "i finally solved my problem.\n\ni added meta-inf/spring/plugin-context.xml, with :\n\n<?xml version=\"1.0\" encoding=\"utf-8\"?>\n\n<beans xmlns=\"http://www.springframework.org/schema/beans\"\n\nxmlns:xsi=\"http://www.w3.org/2001/xmlschema-instance\"\n\nxmlns:atlassian-scanner=\"http://www.atlassian.com/s…", "name": "", "is_accepted": true } ]
e05feaeed2d2966814af6623e045638e
confluence uses a custom preview by inserting an image for some of their own macros. is there a way or an api to do this with my own macros? i could create a servlet that generates an image preview, even though i’d just like it to be the actual output of the macro, but the image is fine for now. …
custom preview for macros
atlassian.com
2021.17
[ { "text": "you can use macro’s conversioncontext to determine if request is for display or preview and generate custom preview when necessary.\n\nprivate boolean ispreview(conversioncontext context) {\n\nreturn conversioncontextoutputtype.preview.value()\n\n.equals(context.getoutputtype());\n\n}\n\nsomething li…", "name": "", "is_accepted": true } ]
43eba8cf0f3133aff7b23fd52625521d
hello there! i’m using confluence server 7.0.1. within one of my plugin’s listeners, i would like to mark a space as favourite for some users. can you point me to the right call to achieve that? i tried spacelabelmanager.addlabel(space, "my:favourite") but no luck, it just adds this as a normal …
how can i add a space to a users favourites?
atlassian.com
2019.51
[ { "text": "if this is in the event listener then you probably should set the user in the current thread with com.atlassian.confluence.user.authenticateduserthreadlocal.set(user)\n\nhave not tried this particular api but we do this in our background threads to change the current user in the current thread. and af…", "name": "", "is_accepted": true } ]
096d4abdf6fb308d9751e0e7855bee96
i am using the following api to search jira issues: /rest/api/2/search with the following request body: “{ “jql”:“summary ~ “jenkins known” and summary ~ “400003004” and summary ~ “validate\_spec” and summary ~ “onboarding” and status != “done” and stat…
jira get issue api not working for all the cases
atlassian.com
2021.17
[ { "text": "hi [@aksagraw](/u/aksagraw) - perhaps this has something to do with your basic auth header, and not your post body. can you try to make the same api call using curl or postman? if successful, i would compare the authorization header value from those calls compared to what you’re seeing on the failed request.", "name": "", "is_accepted": true } ]
c00ae6760d337081f13aaf2ec6d6212d
am in the process of creating a visualization to reflect the aging pull requests waiting for approvals. in this process am finding that “api reflects only those pull requests information associated with the credentials am using for triggering api”. i mean, if i use my credentials of user1 to trigg…
bitbucket pullrequests api is pulling limited information
atlassian.com
2021.39
[ { "text": "i guess you could use the following endpoints from the v1.0 of the api:\n\nget all projects - /rest/api/1.0/projects [rest resources provided by: bitbucket server - rest](https://docs.atlassian.com/bitbucket-server/rest/5.16.0/bitbucket-rest.html#idm8297225296)\n\nget all repos of a project /rest/api/1.0/projects/{projectkey}/repos [rest resources provided by: bitbucket server - rest](https://docs.atlassian.com/bitbucket-server/rest/5.16.0/bitbucket-rest.html#idm8287395680)\n\nget all …", "name": "", "is_accepted": true } ]
07f65f3aa3a07a584cd4d7f32aa762be
is it a good practice to avoid spring scanners in jira add-on…? in some answers, it was told to remove the usage the spring scanners from pom.xml to avoid errors.is it necessary to use spring scanners in jira add-on…? if spring scanners are necessary, which version we should use either 1 or 2 ? t…
need of spring scanner
atlassian.com
2021.17
[ { "text": "spring scanner has several pros (and a couple of cons):\n\npros\n\nthe add-on starts up a lot faster (which is the main reason for it and makes admin happier which makes atlassian happier and so forth).\n\nthe add-on code is much much cleaner - no more declaring things in the atlassian-plugin.xml - it ends…", "name": "", "is_accepted": true } ]