id
stringlengths
32
32
text
stringlengths
0
895k
name
stringlengths
0
33k
domain
stringlengths
5
44
bucket
stringclasses
19 values
answers
list
516c54b469ed7cb33ffeeb037f193864
hello, very excited about the forge platform and the plans atlassian has with forge for the future. i have been trying to build a forge inline macro, but unable to get the macro to behave as ‘inline’, it always seems to have the output type ‘block’. can anyone share the best practices to achieve…
confluence forge development - inline macro
atlassian.com
2021.43
[ { "text": "hi [@davidrobertp](/u/davidrobertp),\n\nas far as i am aware, forge macros are always output as block elements at this stage. let me know if you see documentation that implies otherwise and i’ll investigate further.\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
77c5701568a834f3deddbfc873a36ad2
i’m fairly new to confluence development so i started with the simple hello world addon tutorial found here - <https://developer.atlassian.com/cloud/confluence/getting-started/> - i followed all of the steps in the tutorial but there seems to be something missing or maybe something wrong with git repo…
hello world addon tutorial fails to install
atlassian.com
2021.17
[ { "text": "turns out i was partially right about the network restrictions, also needed admin rights to allow the add-on server to run. this resulted in me moving everything to my personal pc and it worked. thank you again for your help.", "name": "", "is_accepted": true } ]
2e98e47a0b77d1080db167363c735ffe
in the bitbucket server client side extension plugin template i have used a react module component for checkbox tree view and configured in the webpack config a css loader. however, while importing the css file within the js code, shows no error, the classes imported are not effective in the compon…
client side extension imported css via webpack css loader is not reflected
atlassian.com
2021.43
[ { "text": "i think the problem is that your css-loader is missing the additional required minicssextractplugin and style-loader configuration that will handle injecting the css files. similar to what we are doing with .less files:\n\n{\n\ntest: /\\.css$/,\n\nuse: [\n\n{ // add this lines before css-loader…", "name": "", "is_accepted": true } ]
fa65e5bb92f02938acffa40691774ee8
due to the update of ui kit i update my sample forge apps. for those which are using configform there are some issues. e.g. [forge world time](https://bitbucket.org/atlassian/forge-world-time/src/master/) pls have a look at the [code](https://bitbucket.org/atlassian/forge-world-time/src/master/src/worldclock.tsx) after npm install @forge/ui@latest forge deploy echoes the following errors: [tsl] error in d:\worldtime\src\worldclock.tsx(1…
does new ui kit version 0.8.0 cause problems with config / configform?
atlassian.com
2021.10
[ { "text": "hi [@franzbinder](/u/franzbinder) [@tomnoble](/u/tomnoble),\n\nthe fix has been included in the latest release to production, so you should be able to use macro configuration in newly created macros again. thank you for your patience, we’re really sorry for the inconvenience this bug may have caused you.", "name": "", "is_accepted": true } ]
937148ed7df3e13c3c68bd3029819e48
i have a very simple class extending com.atlassian.bamboo.build.viewbuildresults, and an <xwork> section in my atlassian-plugin.xml corresponding to it. when bamboo starts up, i see the following error, and none of the xworks functionality is enabled. [info] [talledlocalcontainer] org.springframewo…
spring autowiring issues when extending viewbuildresults
atlassian.com
2021.17
[ { "text": "this is exactly the same thing. spring scanner is able to wire the classes in your code, but it’s not able import beans from core. the are some which are injected always, storagelocationservice is not one of them.\n\nthe way you used is totally equivalent to the solution i proposed.\n\nthere’s also a c…", "name": "", "is_accepted": true } ]
fe54f4120cffffc0ef7772f5a43d6eff
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, <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.21
[ { "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 } ]
5bcbcc8609f151b5543194d8f27ad1a5
is there an api call a customer could make to create a ticket? i can successfully make this api call using basic authentication and api tokens. <https://company.atlassian.net/rest/api/3/myself> but i get a 403 (forbidden) error when i try to create the ticket: [https://company.atlassian.net/rest/ap…](https://company.atlassian.net/rest/api/3/issue)
programmatically creating a ticket as a customer (portal only) user
atlassian.com
2021.17
[ { "text": "you’re looking at the platform api. that’s not correct. look at the service desk api: <https://developer.atlassian.com/cloud/jira/service-desk/rest/#api-rest-servicedeskapi-request-post>", "name": "", "is_accepted": true } ]
b5bce1adbedfbed0346cf9014e952ea4
hi all, we’ve recently been made aware of the fact that our confluence app’s servlets do not deliver the http security headers that are delivered by default by confluence (content-security-policy, x-content-type-options, x-frame-options and x-xss-protection response headers). these same headers ar…
http security headers not set in confluence apps
atlassian.com
2021.17
[ { "text": "they’ve opened a bug report for me with the confluence team, but it doesn’t look good: <https://jira.atlassian.com/browse/confserver-57471> feel free to leave a vote, but i wouldn’t hold my breath.\n\nin the meantime, basically you have to configure your reverse proxy to deliver these headers for conflu…", "name": "", "is_accepted": true } ]
94dc74275580fe4e32a42ba2d4b41494
[using soy templates](https://developer.atlassian.com/server/jira/platform/using-soy-templates/) states that calling soy templates from a java class is “not recommended”; why is that? is the use of soy templates recommended generally for jira server development, or should we stick with velocity? what direction is the jira development team taking in regard to soy vs. vel…
soy templates or velocity?
atlassian.com
2021.17
[ { "text": "hi [@david.pinn](/u/david.pinn),\n\ncalling a soy template from java is not recommended because it often couples your application’s view layer to your business logic layer. for a typical page render, it is best to let java handle the collection and transformation of data to prepare it for sending to the view layer, th…", "name": "", "is_accepted": true } ]
4f3aeb0a76080876ae75b97dace1a6fd
hi guys, i am currently working on my first connect add-on. i use the dialog component to prompt for user input. now, i’m searching for the recommended approach to send this user inputs back to the node.js server. would that be to use the request javascript module ([https://developer.atlassian.com…](https://developer.atlassian.com/cloud/confluence/jsapi/request/)
recommended approach to send user inputs to the server?
atlassian.com
2021.10
[ { "text": "ap.request is there for making requests against the confluence rest api.\n\nto make requests against your own backend, you can use whatever you like. i assume you are using an express server. in that case add a new route to your express app. find more information in the [docs](https://expressjs.com/en/resources/middleware/body-parser.html#express-route-specific), and plenty of tutorials c…", "name": "", "is_accepted": true } ]
e2c19970d8d79cc7409423a4890fb147
hi there. it seems there’s an issue for this. <https://ecosystem.atlassian.net/browse/webhooks-113> is there any possibility of getting this to avoid a call back to the rest api to pull the entity properties from the issue? [@bbaker](/u/bbaker) [@blewandowski](/u/blewandowski)
including the entity property as part of the webhook post function?
atlassian.com
2021.17
[ { "text": "hi, [@2upmedia](/u/2upmedia),\n\nthis is possible in a connect app, using the [webhook module](https://developer.atlassian.com/cloud/jira/platform/modules/webhook/). as the example shows:\n\n{\n\n\"modules\": {\n\n\"webhooks\": [\n\n{\n\n\"event\": \"jira:issue\\_created\",\n\n\"url\": \"/issue-created\",\n\n\"excludebody\": false,\n\n\"filter\": \"project = hsa\",\n\n\"propertyke…", "name": "", "is_accepted": true } ]
d1e7fc4594bd126e69ddd728fe8d1ec2
i’d like to compare two values and only allow a transition to occur if they are equal, rendering the condition true. the first value is the issue’s issue type. the second value is the option value of a single select custom field. here’s what i’m working with: def issuetype = issue.getissuetype().…
get option as string
atlassian.com
2021.17
[ { "text": "you can do a getvalue() on the option. see <https://docs.atlassian.com/jira/server/com/atlassian/jira/issue/customfields/option/option.html#getvalue-->", "name": "", "is_accepted": true } ]
a4b9b2aae90ca3c47cc8362e02c34952
i’m working with the confluence api and testing some endpoints in the browser to make sure it returns the right information and then fetching with curl. when i go to the following url: [http://localhost:8090/rest/api/content/search?cql=label+%3d+"program-status-rollup-employee"&expand=space](http://localhost:8090/rest/api/content/search?cql=label+%3d+%22program-status-rollup-employee%22&expand=space) i get …
curl get is omitting json that is shown in the browser
atlassian.com
2021.17
[ { "text": "hi [@coreygans](/u/coreygans),\n\ntry escaping the ampersand with single quotes like\n\ncurl -u $user:$password http://localhost:8090/rest/api/content/search?cql=label%20%3d%20%22program-status-rollup-employee%22'&'expand=space. without escaping ampersand, i would assume that the script will be run in the background, h…", "name": "", "is_accepted": true } ]
cb09cecc29e246d1a409c25d11456fda
sidebar in jira stopped working today for all addons having defined a sub-menu structure. clicking on the main link will open the vendor page instead of opening the sub-menu defined in the descriptor. examples of broken plugins include tempo, clockwork and others. we’re getting reports from vendors …
sidebar links stopped working for all apps
atlassian.com
2021.17
[ { "text": "this incident has been resolved and everything should be working again as expected.", "name": "", "is_accepted": true } ]
4d3c9f41ee684aacf785a467e93628ec
hi everyone, is there a way within jira java api to import issues from an xml file, which has been generated by jira? thanks, stas
import jira issues from xml
atlassian.com
2021.17
[ { "text": "checkout [dataimportservice](https://docs.atlassian.com/jira/server/com/atlassian/jira/bc/dataimport/dataimportservice.html). of course, you should be very careful with it but i guess you already know what you are doing!", "name": "", "is_accepted": true } ]
c41237f30201f0386c0fa9ed32fc62fa
when i am calling trello api to get details of the board which has card, lists and checklists fields in it. the response from the api has hashed cards/checklist/list positions. is there any way i can interpret the position to know where they are positioned in the board?
how to know the position of a card/checklist/list?
atlassian.com
2021.25
[ { "text": "the pos fields aren’t hashed; they should be numbers. however, they are not whole numbers that increase by 1 for each pos. instead, the numbers can have a wide range. we do this so that when you insert a new card, or move a card around, we do not have to make an update to every card above the new/mo…", "name": "", "is_accepted": true } ]
f59c0e2b5986b5064a7cca470fdebfdb
hi! i really don’t know a nice way to do this but i want to add configuration settings to my macro that uses custom ui kit. at the moment the custom ui app and confluence configuration are working separately there is no way for them to interact with each other. i tried to use the resolver but it onl…
how to use macro configuration with custom ui apps in forge
atlassian.com
2021.39
[ { "text": "sorry for the delayed response, you can use config with a custom ui macro.\n\nyou still define your config function with ui kit, and hook it up to your macro in the manifest.\n\naccess the config via your [resolver](https://developer.atlassian.com/platform/forge/runtime-reference/custom-ui-resolver/)", "name": "", "is_accepted": true } ]
f15f4c28f72c97f614b3769401062d37
hello, i am working on a plugin development. in-order to have data for testing, i have taken backup data from the testing server jira (system -> backup system) and restored it in my local machine (system -> restore system). my testing jira has crowd authentication and so when i am trying to login m…
how to bypass crowd authentication
atlassian.com
2020.45
[ { "text": "hi [@klkumar143](/u/klkumar143),\n\ni think that you could try to use [recovery mode](https://confluence.atlassian.com/doc/restore-passwords-to-recover-admin-user-rights-158390.html) on your development instance and later on [change the order of directories in user directories config page](https://confluence.atlassian.com/adminjiraserver079/configuring-user-directories-950288323.html) so that the jira internal directory would be first one. later on [create a user](https://confluence.atlassian.com/adminjiraserver/create-edit-or-remove-a-user-938847025.html) in that internal directory so that you can use it …", "name": "", "is_accepted": true } ]
8d70eb92eee01457e1f40097d51ccce4
in my app descriptor i have a service desk action defined as follows: { "servicedeskportalrequestviewactions": [{ "key": "sd-portal-request-view-action-my-action", "name": { "value": "my action" }, "url": "/sd/portal/request/view/action/dialog/show?issue.key={issue.key}&project.id={proj…
url context parameters in jira service desk not working with jsd customer
atlassian.com
2021.17
[ { "text": "ok i’ve done some more investigation and it looks like this indeed should be working as you expect. i’ve tracked down the problem and created a fix. this should be live soon. thanks for your patience [@tbinna](/u/tbinna).", "name": "", "is_accepted": true } ]
200de655bde4d4121ece4711732b27df
we plan to distribute our forge app via the developer console until the marketplace is ga. can we still claim that our app is certified on our website? kind regards,
certified atlassian app without publishing to marketplace?
atlassian.com
2021.31
[ { "text": "[image] angusgordon:\n\nuntil the marketplace is ga\n\ngood news! the marketplace is in ga. as of may 25th, 2021 forge apps can be listed on the marketplace: [forge for atlassian cloud - work life by atlassian](https://www.atlassian.com/blog/announcements/forge-launch).", "name": "", "is_accepted": true } ]
6ae3a8168b13da6259804b2d1a60145c
hello community! i’m trying to customize our messages having in mind the language the user has. my first question is how do i find the version aui is using for select2? i’m asking this because at the documentation, there’s a message saying that select2 is a wrapper from [here](https://select2.org/) but it does not say wh…
select2 - can't customize messages
atlassian.com
2021.17
[ { "text": "so i’ve solved the problem.\n\naui is using the select2 3.5.3 version and its object is a little different than the latest one.\n\nso, in order to customize messages, we don’t need the “language” object. we just need to implement at the object’s highest level, the attributes we need.\n\nas example:\n\najs.$…", "name": "", "is_accepted": true } ]
68edea100a7b2c770590f7d64fae2be1
i’m building a simple bitbucket cloud app that is supposed to react to webhooks, one of reactions is to post a comment to a commit or pull-request. so far i came up with following atlassian-connect.json { "modules": { "webhooks": [ { "event": "*", "url": "https://***.ex…
bitbucket cloud api: unable to authenticate against bitbucket using jwt token from nodejs 8
atlassian.com
2020.05
[ { "text": "hi [@anton.boritskiy](/u/anton.boritskiy),\n\nfor reference, please see [this](https://bitbucket.org/atlassian/bb-cloud-jwt-grant-sample-app/src) sample app that i created.\n\njwt oauth reference code:\n\nlet unverifiedclaims = '';\n\ntry {\n\nunverifiedclaims = jwt.decode(req.query.jwt, '', true); // decode without verification;\n\n} catch (e) {\n\nconsole.log(e);\n\n}\n\nlet issuer = unverifiedclaims.…", "name": "", "is_accepted": true } ]
e7f024ed719c25ae2daf50a2ba46f3fd
we have an app published in atlassian marketplace. i can see the active installations and downloads of our app in vendor account . i like to know the email id of the users who dowloaded/installed the app. from the documents, i came to know that there will be a “reports” section in which the data wi…
email id's of app user
atlassian.com
2021.17
[ { "text": "what product is the app for? is it a paid or a free app? if it’s a free app then the marketplace doesn’t have the data and you would have to collect it yourself in the app (with the appropriate privacy policies etc).", "name": "", "is_accepted": true } ]
e3f16e734d9854c3c9a82db01b39407f
hi, just got an issue from a customer asking me how to display the add-on on his project. turns out that the add-on is properly displayed on software project types but they are not shown at all on business project types. has anybody else seen this problem before? i quickly search the bug list but d…
add-on not being displayed in business type projects
atlassian.com
2021.17
[ { "text": "[@jack](/u/jack) [@yvesriel](/u/yvesriel) sorry for the delay!\n\nupdate on this: add-on support is now enabled for all business projects with the new issue view. it will work for board (modal) and full issue page. let me know if you have any issues.", "name": "", "is_accepted": true } ]
bf28c2753af752f08f595c35f29ec71c
when testing license behavior in the developer mode i encountered a problem with inactive subscription license type. after i set it, i cannot change back to any other license type and no longer access addon. moreover, i get an error in the console: [[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/1/8/18e735897b39e255ca8c0b31391c4231ab2683dd.png "image") have you ever encounter this problem? is …
cannot change back from inactive subscription license type
atlassian.com
2021.43
[ { "text": "same problem happened to me today and i think i found a workaround:\n\nbackup your jira instance via backup manager. (gg → backup manager)\n\ndownload your backup zip.\n\nopen entities.xml file in the zip with a text editor.\n\nsearch for inactive\\_subscription. you should find a line with the access token of …", "name": "", "is_accepted": true } ]
88341c7932ae137ed562d16fdd026fca
hi, new to the confluence cloud forums i’ve been following along on with this tutorial: <https://developer.atlassian.com/cloud/confluence/lesson-1-the-source-awakens/> and have come to run the addon, however i don’t get the expected output and i’m not sure why. [image] this is as far as it gets. an…
lesson 1 npm start not starting addon
atlassian.com
2021.17
[ { "text": "you’re welcome, [@hamish.burns](/u/hamish.burns).\n\nrunning ngrok should be sufficient\n\n[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/b/c/bcf3b7b67c9f8f6afd03a10622973d73e65f17e4.png \"image\")\n\nfor a windows machine, if ngrok returns something like a bad command or file name, i believe you need to add it in your path first.\n\ncheers,\n\nian", "name": "", "is_accepted": true } ]
52a9387c9d65fe4e6305b7155633fb99
hi, team. i am a beginner in jira and want to create a jira project using the jira rest api in a perl environment. so i saw the information (url) below. however, there are no examples of perl environment. <https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-api-3-project-get> so i saw…
i want to create a jira project in a perl environment
atlassian.com
2021.17
[ { "text": "[image] netdynamics:\n\njira::rest error[400 - bad request]:\n\n-吏?뺥븳 ?꾨줈?앺듃 ?묒떇??議댁옱?섏? ?딆뒿?덈떎. ?대떦 ?꾨줈?앺듃 ?묒떇???ъ슜?먯쓽 jira ?몄뒪?댁뒪?먯꽌 ?ъ슜???덈뒗吏 ?뺤씤?섏떗?쒖삤. ?꾩???꾩슂??寃쎌슦 ?ъ슜?먯쓽 jira 愿由ъ옄?먭쾶 臾몄쓽?섏떗?쒖삤.\n\njira 愿由ъ옄?먭쾶 臾몄쓽?섏떗?쒖삤.\n\nat ideaic\\_interface\\_jira\\_create.pl line 64.\n\ni am not sure what the error…", "name": "", "is_accepted": true } ]
bc062ccf4ee800eae7d498a8472ab95b
code macro loses its content when exporting it using rest api /contentbody/convert/export\_view. sending this <ac:structured-macro ac:name="code" ac:schema-version="1" ac:macro-id="c3d51124-703a-489d-934b-75c66cff0b3a"><ac:plain-text-body><!--[cdata[.refresh-issues-bottom { display: none; }]]--></ac…
code macro is not rendered when exporting by /contentbody/convert/export\_view
atlassian.com
2021.10
[ { "text": "hi [@akhaneev](/u/akhaneev) ,\n\nthe content of the <ac:plain-text-body> tag looks like a html comment:\n\n<!--[cdata[.refresh-issues-bottom { display: none; }]]-->\n\ncan you share where this came from. if the content of the code macro contained a comment, it should be within the cdata block.\n\nif you change your query …", "name": "", "is_accepted": true } ]
e16dbaa4c92b07520fcdf1d9d65139f9
hey guys, what’s your deployment strategies with cloud apps and how you prefer to publish them? i’m struggling a bit with this topic. what i have in mind is that i can make some kind of blue/green deployment, creating marketplace listing providing link to for example [my.app-green.com](http://my.app-green.com) publishing it…
deploying and publishing to market
atlassian.com
2021.17
[ { "text": "hi,\n\nfor my part, i use heroku for my paas provider. they have a feature called [pre-boot](https://devcenter.heroku.com/articles/preboot) which switches incoming requests to the new web processes while keeping the current requests running therefore providing a zero downtime deployment mechanism, both operate on the same db (postgres) which is auto…", "name": "", "is_accepted": true } ]
84e8a0ec6c79693c0bab822036702317
hey there, i try to develop a plugin with some entites. i did this tutorial <https://developer.atlassian.com/server/framework/atlassian-sdk/getting-started-with-active-objects/>. everything compiles without error and runs fine. unfortunately the attributes of my entities are always null. entity @…
activeobjects attribute always null
atlassian.com
2021.39
[ { "text": "private product addproduct(string projectkey,string issuekey, string title){\n\nfinal product p = ao.create(product.class);\n\np.settitle(title);\n\np.setprojectkey(projectkey);\n\np.setissuekey(issuekey);\n\np.save()\n\nreturn p;\n\n}", "name": "", "is_accepted": true } ]
96a0f4d9eae3bfc8cabfd1279f5b43bd
hi, i was wondering if on friday the /rest/api/2/user endpoint was changed to remove to “name” attribute but then the change was rolled back this weekend? i know there are upcoming changes but not sure if it was implemented. my tests for the attribute indicate it was not present on friday but it i…
gdpr api endpoint changed early
atlassian.com
2021.39
[ { "text": "hi [@jefftchang](/u/jefftchang) - the change to this api has been slowly rolling out over the past 2 weeks. while you should not normally see the changes rolled back, it could be that someone opened a support ticket, and asked our support team to temporarily roll these changes back.\n\nthis post from october 2018 desc…", "name": "", "is_accepted": true } ]
0dfb96bee7b1d4e0f51205006ce669f3
adf = atlassian document format ([documentation](https://developer.atlassian.com/cloud/stride/apis/document/structure/)) at atlascamp, we’ve been told about the new adf, the new [json-based format](https://developer.atlassian.com/cloud/stride/apis/document/structure/) that will be used (in lieu of xhtml or wikimarkup) in jira comments. but i can’t find, or i’ve missed the infos about the publish dates. will it be deployed for confluence ser…
when will adf be used for confluence?
atlassian.com
2021.17
[ { "text": "regarding confluence server, currently we have no plans to introduce adf. my understanding is that adf is tightly coupled with the new editor which is being rolled out in cloud.\n\nno plans does not mean never, it just means that it is not something which we are actively discussing or put on any sort …", "name": "", "is_accepted": true } ]
eba15ebf44232de45b99a1d994c20ad0
are there any “available in the atlassian marketplace” graphics that reflect the new adg3 style? i’m working on some pages on our website and would like to add a button, that atlassian marketplace users will recognize, which links to our marketplace listing. we used to have these buttons, but i can…
"available in the atlassian marketplace" graphics with adg3
atlassian.com
2021.17
[ { "text": "hi maarten, we currently do not have newly styled buttons for linking to marketplace. i know what you are referring to and we do have this in the queue to work on. i will add your request and see if we can get an eta.\n\ncheers!", "name": "", "is_accepted": true } ]
0537b325085bd0ce13e4b6e2054bc028
i am trying to get the current user timezone, pass this as a variable to the velocity template and then according to the value of the timezone i am manipulating timestamp values on a table. my problem is that i am getting timezone results in “europe/berlin” or “europe/london” format. but i need it …
how to convert timezone key pair to short timezone codes?
atlassian.com
2021.43
[ { "text": "okay i have found a solution that works a lot different but solved the main problem.\n\ni have used the jira datetimeformatter in a service component, which defines a datetimeformatter specific for the currently logged in user, injected this in the velocity context in my servlet and then called the fo…", "name": "", "is_accepted": true } ]
36201da87c62995a1a8688e833562263
hi everybody, on the main page for atlaskit, <https://atlaskit.atlassian.com/> i’m getting a “403 not allowed” when i try to access the “getting started with atlaskit!” page. unfortunately i can not find any informations about the need of having any special permissions. i mean, it is the main entra…
403 for "getting started with atlaskit!" page
atlassian.com
2020.34
[ { "text": "[@ccsno](/u/ccsno) thanks for informing us. we’ll reach out to the atlaskit team for them to chime in here.", "name": "", "is_accepted": true } ]
4accf73f5ec9facbda06828954adb037
hi experts, kindly help me to create my own log file for my jira plugin. now i placed my log4j.properties file in src/main/resources and my rest api of jira plugin i wrote below code but it is not creating any log file inside log folder. logger.info(“calling getjiraactivity api”); log4j.propert…
i want to write my own log file for my jira plugin
atlassian.com
2021.17
[ { "text": "you would either have to update the log4j configuration within jira manually (or tell your users how to) or update the configuration programatically (haven’t tested this one but found it on the google machine):\n\n[[daniele torino]](https://stackoverflow.com/users/2784766/daniele-torino)\n[dynamically add appender with slf4j and log4j2](https://stackoverflow.com/questions/22866275/dynamically-add-appender-with-slf4j-and-log4j2)\n\n…", "name": "", "is_accepted": true } ]
8ddb677631d0f155fae8dbff76c0abdf
i am trying to develop an app which has some custom content, following this tutorial: <https://developer.atlassian.com/cloud/confluence/custom-content-with-confluence-connect/> i would like my custom content page to also include the comment section i get at the bottom of standard pages. is that possi…
adding comment section to custom content
atlassian.com
2020.34
[ { "text": "hi [@yvesnoirjean](/u/yvesnoirjean),\n\nthanks for reaching out. confluence has pre-defined hierarchy of content types. spaces have pages, pages have comments. since, you are defining new content type ‘customer’ in that tutorial, it has no hierarchy defined. unfortunately, you can’t bring in the comments as you are expe…", "name": "", "is_accepted": true } ]
11e905d1c9c6cfcbf0df6576f9d84b69
hey, i’m working with active objects for the confluence plugin i’m developing. i’ve used the todo example: <https://developer.atlassian.com/server/framework/atlassian-sdk/getting-started-with-active-objects/> as a starting point. it works fine, but then i removed all logic that force the users to be …
cannot persist active objects without an authenticated user
atlassian.com
2021.17
[ { "text": "same applies for a component service accessed by a rest request. use transactiontemplate to wrap call within a transaction", "name": "", "is_accepted": true } ]
9dec2d9ab0433ec0511b3bdcc6f8ab6d
would it be possible to get all of the javascript source map files that is part of jira’s front end build to either respond with a 204, or at least [statlas.prod.atl-paas.net](http://statlas.prod.atl-paas.net) be resolvable outside of the atlassian network? whenever we debug with a customer - the “noise” from an internal server not …
jira cloud - statlas.prod-atl-paas.net and source map files
atlassian.com
2021.25
[ { "text": "hi [@danielwester](/u/danielwester),\n\nthanks for reporting this. i’ve created [jracloud-75714](https://jira.atlassian.com/browse/jracloud-75714) for the jira team to address.\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
7e2a1bb5db0156ed737f1d3a86908a66
i have just created a server version of the zenuml plugin. i would like to test it before requesting approval. it is currently set as “private”. however, when i click the “try for free” → “start free trial” button, i get the below error: [[59%20pm]](https://aws1.discourse-cdn.com/atlassiandeveloperstaging/original/3x/4/1/410e41bd161797f95365b1599f3f027dd5438af5.png "59%20pm") do i need to get it approved before i can test it…
try a privately listed app before it is approved
atlassian.com
2021.25
[ { "text": "[@eagle.xiao](/u/eagle.xiao) you can only generate evaluation licenses for approved apps.\n\nyou can always install the app manually by uploading it in your jira instance using the upm. if you wish to see how the app behaves with licensing enabled, and test multiple license state scenario’s, you can use the [timebomb l…](https://developer.atlassian.com/platform/marketplace/timebomb-licenses-for-testing-server-apps/)", "name": "", "is_accepted": true } ]
f9427aa9e6e5212a6505be90653ab180
hi: i’m going to test my confluence plugin performance for confluence datacenter , i cloned the [dc-app-performance-toolkit](https://developer.atlassian.com/platform/marketplace/dc-apps-performance-toolkit-user-guide-confluence/#testscenario1) , but it seems dosen’t support confluence . so i tried the dev-branch which support confluence enterprice 6.13.x version. [github - atlassian/dc-app-performance-toolkit at de…](https://github.com/atlassian/dc-app-performance-toolkit/tree/dev)
problems on confluence datacenter app performance testing
atlassian.com
2021.21
[ { "text": "well, you can. but unless you’ve got a lot of time to invest i would strongly recommend waiting on the official tooling. tools like e4 are great if you know what you’re doing but they have a steep learning curve. using the official tooling is probably easier and also more future proof if atlassian s…", "name": "", "is_accepted": true } ]
dd2b19b5f00122fec0371115219c5880
hi, i was experimenting with forge and my forge app was working fine. i think i have changed nothing but it started not loading js and css files referenced from index.html of custom ui. i’m using development environment, @forge/[email protected]. browser’s log shows that it can able to load index.html f…
forge customui app not loading anymore
atlassian.com
2021.39
[ { "text": "in case it’s helpful to anyone else, i encountered this after refactoring my ui build script and accidentally switched my asset paths to be absolute (instead of relative (per the [docs](https://developer.atlassian.com/platform/forge/custom-ui/#accessing-static-assets)). if you have absolute paths to your assets in your index.html, then you’ll get the same 403 errors.", "name": "", "is_accepted": true } ]
fce90e01f3c7e0d3a31a7dde83b24ae4
hi team, i am creating a jira plugin for cloud and i want to call a javascript function on click of web item. how can i do this. i am new with cloud plugin development. any idea on this.
on click of web item call javascript function in jira cloud
atlassian.com
2021.17
[ { "text": "have you looked at the documentation of the [issue content module](https://developer.atlassian.com/cloud/jira/software/modules/issue-content/) linked in your screenshot? according to that you would add that js inside the document returned by the url specified in the target value of your issue content module.", "name": "", "is_accepted": true } ]
80af90450b1172aa955e06cb138ad432
how do i include the sprint details when i get issues using /rest/api/3/search ? i am successfully retrieving the list of all issues (for a given project) with: request.get({ url: 'https://api.atlassian.com/ex/jira/'+ req.user.jiracloudid +'/rest/api/3/search', headers: { 'authorizat…
jira api v3 - include sprint in get issue search
atlassian.com
2021.17
[ { "text": "sprint is a custom field, so you first need to figure out its id using the get /rest/api/2/field api. you should find the following entry there:\n\n{\n\n\"id\": \"customfield\\_x\",\n\n\"key\": \"customfield\\_x\",\n\n\"name\": \"sprint\",\n\n\"custom\": true,\n\n\"orderable\": true,\n\n\"navigable\": true,\n\n\"se…", "name": "", "is_accepted": true } ]
e087c8db610bc31c603b178ecbd33574
hi! i would like to use connect javascript api (<https://developer.atlassian.com/cloud/jira/platform/about-the-connect-javascript-api/> ) in my custom ui forge app. when i add metatag with <https://connect-cdn.atl-paas.net/all.js> i receive the next error: refused to load the script 'https://connec…
connect javascript api in forge apps
atlassian.com
2021.43
[ { "text": "you can’t use connect javascript in forge - you’ll need to use the custom ui bridge - [custom ui bridge](https://developer.atlassian.com/platform/forge/custom-ui-bridge/bridge/)", "name": "", "is_accepted": true } ]
ca438c8852376bab963fb98b5865ae85
in forge do you always need to create a new react app for each and every custom ui component you want to build? can you have one react app from multiple custom ui components?
how to build several custom ui components with one react app in static folder
atlassian.com
2021.10
[ { "text": "i ended up using <https://github.com/lerna> with cra. webpack was a bit challenging for me.", "name": "", "is_accepted": true } ]
1f4143f779701de21336f987523b656f
my app was working today and suddenly stopped loading altogether. no changes on my part. it is now returning a 503 error. it’s also stopped loading locally. no error message. has there been any changes to atlassian-connect-express today?
jira cloud addon suddenly stopped working
atlassian.com
2021.17
[ { "text": "probably it was caused by unavailability of auth.atlassian.io during that timeframe <https://developer.status.atlassian.com/incidents/14hsjc7ts71n>", "name": "", "is_accepted": true } ]
0a373a103c3840b732668d0e71a93759
hi, i’m trying to build a rest resource which returns pages with the title that the user searches. i suppose the best way is to use the search v2 api (because i’m not aware of any other api to search for pages by title), but it doesn’t return pages, event if my query is the exact title of the page.…
how to search for pages by title using the search v2 api?
atlassian.com
2021.17
[ { "text": "my guess is that you miss the type of results you expect, e.g page, attachment etc. you should add it and then try the below (my custom search code)\n\nset<contenttypeenum> contenttypes = new hashset<contenttypeenum>();\n\ncontenttypes.add(contenttypeenum.page);\n\ncontenttypequery contenttypesquery = new c…", "name": "", "is_accepted": true } ]
93b3aac3af18ab411891a8e5a6092dd7
hi, when confluence builds the url of an addon’s iframe, it authenticates it with a jwt token, which contains various values including the qsh (=basically a hash of the current url). the purpose is to prevent the user from building an url themselves. but when we want to call rest apis of our produ…
why isn't the qsh always required in a jwt authentication?
atlassian.com
2021.17
[ { "text": "[@aragot](/u/aragot), the qsh jwt claim enables the recipient of a jwt-signed http request to verify that data in the url path or query string was sent by the jwt issuer.\n\nwhy is it secure?\n\nap.context.gettoken() returns a jwt token that is not associated with any particular http request, and as such does not …", "name": "", "is_accepted": true } ]
81d552afcd40d693876e136147180767
trying to install atlas-connect following these instructions <https://developer.atlassian.com/cloud/confluence/getting-started/#install-ace> i can’t get the command to work, cmd logs below c:>node -v v8.11.1 c:>npm -v 5.6.0 c:>npm install -g atlas-connect npm warn deprecated [email protected]: u…
atlas-connect command not found
atlassian.com
2021.17
[ { "text": "hi [@pcooper1979](/u/pcooper1979)\n\ncan you verify that it is actually installed in the npm folder underneath c:\\users\\coops\\appdata\\roaming\n\nand can you check your windows path system variable to be sure that the path includes the atlas-connect folders?", "name": "", "is_accepted": true } ]
adc01097331544816f0ed77b03d171e3
i am trying to implement the atlassian-cache-api on jira 8.5.4 datacenter. i don’t know what i am doing wrong but the cache is not replicating between the nodes, below is my cache class. package com.custom.jira.cache; import com.atlassian.cache.cache; import com.atlassian.cache.cacheloader; import…
how to implement cache in data center plugin
atlassian.com
2021.10
[ { "text": "i solved my problem using below links to understand and implement.\n\n<https://labs.consol.de/java-caches/part-3-2-peer-to-peer-with-ehcache/index.html>\n<https://bitbucket.org/cfuller/jira-clustering-compat-example> (the code is a little old, but still the concept is same)\n\nthanks", "name": "", "is_accepted": true } ]
167c230c94827dbb4c745a9ddf8f5c51
hi i realise that there are issues with the same domain origin policy, but i’d like to write an connect add-on containing links back into bitbucket. as the add-on is loaded in an iframe any links within the add-on back to bitbucket render bitbucket within itself (in the iframe). has anyone found …
navigate from add-on back to bitbucket
atlassian.com
2021.17
[ { "text": "stephen, have you tried adding target=\"\\_top\" to your hyperlinks?", "name": "", "is_accepted": true } ]
6146ee7c119614f26fa52c72009885d2
hi, i want to integrate web application with jira cloud rest api and webhooks. in the documentation is mentioned basic/oauth 1.0a. is it possible to use oauth 2.0/jwt in some way? i saw oauth 2.0/jwt in attlasion connect, but i dont want to extend the jira ui, i just want to make changes to existin…
rest api auth possibilities
atlassian.com
2021.17
[ { "text": "for anyone who is looking for guidance in the future, i ended up using the atlassian-connect-express with success. the framework offers jwt authentication to the add-on backend, which allows you to ensure the user is authenticated in jira. then, make the call to your own backend api from the plugin …", "name": "", "is_accepted": true } ]
556cc0f5b44ec5a32fb335987f3583ce
[[image]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/4/2/42491b7de095a3c503358388d0e16a80ca58d275.png "image") <https://developer.atlassian.com/cloud/trello/rest/#api-organizations-id-get> surely there’s more data on an org than just an id.
trello docs are incomplete
atlassian.com
2020.29
[ { "text": "the api docs need a lot of love right now, and we are working on adding incomplete information, one of the big ones being incomplete response schemas. regardless, thanks for pointing this out.", "name": "", "is_accepted": true } ]
2c045bc23dda3774baaadfebd61a6b32
for example i have query on sql: select length from ( select length, min(title) title from film group by length ) t order by title i want to create the same for jira’s active object: query query = query.select()............... ao.find(entity\_class, query) using a subquery, i want to fix th…
how to create subquery in active object
atlassian.com
2020.29
[ { "text": "i find a way: change distinct to group:\n\nao.find(user\\_entity\\_class, query.select()\n\n.group(\"user.id\")\n\n.alias(user\\_entity\\_class, \"user\")\n\n.alias(salary\\_entity\\_class, \"salary\")\n\n.join(salary\\_entity\\_class, \"user.id = salary.user\\_entity\\_id\")\n\n…", "name": "", "is_accepted": true } ]
7fa387bc99eebb4704994c276f78e9d1
hi all, i apologize for the newbie question as i’m very new to all this. i’m extending the getting-started examples for creating a simple connected app. i tried to register a simple webhook on issue:create. i can see a post event happening when i create an issue in jira, but it seems i can’t han…
help needed with receiving webhooks
atlassian.com
2021.39
[ { "text": "hi [@datwebb](/u/datwebb),\n\ni’ve tried to set up an app similar to yours.\n\nhere’s my modules field in application descriptor which defines the webhook:\n\n\"modules\": {\n\n\"webhooks\": [\n\n{\n\n\"event\": \"jira:issue\\_created\",\n\n\"url\": \"/issue\\_created\",\n\n\"exclude…", "name": "", "is_accepted": true } ]
76b01f03ed805894b5930cdedf9d14cf
in testing the jira 8 preview (8.0.0-m0014 to be exact) with our app, we ran into a dependency injection issue. it appears spring contexts generated by jira 8 (e.g. atlassian-plugins-host-components.xml) now have default-autowire=“constructor”, whereas jira 7 used default-autowire=“autodetect”. this…
jira 8 transformer plugins and dependency injection
atlassian.com
2021.17
[ { "text": "[image] audun.roe:\n\nis the aforementioned change to default-autowire intentional or a bug?\n\nthe change with autowiring is done in the new atlassian platform 5.0 (not yet released) and is documented in the atlassian-plugins [changelog here](https://bitbucket.org/atlassian/atlassian-plugins/src/f15bebc9fd5fa8e5829c27eb599df136bfef3bca/changelog.md?at=issue%2fjava11-compatibility&_ga=2.103533955.2046754838.1539412999-233282115.1539412999).\n\nthe changelog is referenced from [java 11 and jira plat…](https://confluence.atlassian.com/adminjira/jira-platform-releases/jira-development-releases/preparing-for-jira-8-0/java-11-and-jira-platform-upgrade)", "name": "", "is_accepted": true } ]
ac702a30c0c1e451c5696beb0b9cbf42
hi, i’m using the following project permission in one of my plugins: "conditions":[{ "condition":"has\_project\_permission", "params": { "permission": "project" }, "invert":false }] the “permission”: “project” doesn’t seem to be in the [documentation](https://developer.atlassian.com/cloud/jira/platform/conditions/) under pro…
has project permission
atlassian.com
2021.17
[ { "text": "hi, [@paul](/u/paul),\n\nyour condition uses legcay behaviour where condition keys are matched by their prefix. in this case, if a name does not match any actual permission key but starts with “project”, it will be converted to “administer\\_projects”. and that is the key you should be using instead.\n\nbest regards …", "name": "", "is_accepted": true } ]
9b74fb715a1a661e33846445120235f3
dear forge community, same as back in november where i posted this topic: [big problem with page publish trigger](https://community.developer.atlassian.com/t/big-problem-with-page-publish-trigger/43324) the page trigger is again not working. i already updated api, cli and ui to the newest version, but the trigger doesn’t work. the code and trigger are still the same as back in november,…
page publish triggers are not working again
atlassian.com
2021.21
[ { "text": "hi [@michaelweilbuchner](/u/michaelweilbuchner),\n\ni fear you may have missed this notification which could be causing your above-noted issue [updates to product events](https://community.developer.atlassian.com/t/updates-to-product-events/45078) as they were removed on 23rd february as notified here. have you migrated to using the new [confluence product events](https://developer.atlassian.com/platform/forge/product-events-reference/confluence)?\n\nplease let us know if you have migrated…", "name": "", "is_accepted": true } ]
2ac0f0113676d8cdd43b27e39a9957df
hello everyone. i am building a forge app via custom ui that requires me to store user’s tokens safely and securely. the token is generated by calling another external api. at the moment i’m storing the token in forge’s storage api mostly for ease of use. for every request, i have to check whether a…
what is the best way to store and access user tokens securely and safely?
atlassian.com
2021.39
[ { "text": "you’re in luck!\n\nwe’ve just extended our storage api to be able to store secrets.\n\n<https://developer.atlassian.com/platform/forge/runtime-reference/storage-api/#storage-setsecret>\n<https://developer.atlassian.com/platform/forge/changelog/#change-330>", "name": "", "is_accepted": true } ]
854190161d95caf0ef197bcf7e9fb99f
i’ve been building some macros, and noticed the docs allow for specifying a defaultvalue for each parameter that the macro has. however, confluence only displays the default value in the editor. it does not send the defaultvalue to the app when the parameter is referenced in the url of the macro. s…
why are default values for macro parameters only half implemented?
atlassian.com
2021.43
[ { "text": "hi [@jbevan](/u/jbevan) ,\n\ni’ve re-opened this issue. it’s after hours for the confluence team right now so i didn’t consult them - hopefully they don’t mind. :slight\\_smile:\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
cbb0def7c7051a1ec61c68865be73b33
hi, we would like to attend the connect week in amsterdam. how can we apply? tx, francis
connect week amsterdam
atlassian.com
2021.17
[ { "text": "hi [@francis](/u/francis),\n\nas per this [post](https://community.developer.atlassian.com/t/app-week-amsterdam-november-12-16-applications-now-open/22644) by [@tblaker](/u/tblaker), you can apply on [this google form](https://docs.google.com/forms/d/1gpqt5xotsij_t57iztxwbesnfkb0wgofhhbhvyfqagu/viewform).\n\ncheers,\n\ntobi", "name": "", "is_accepted": true } ]
f25175df0c624838bed3711784f5dc9d
i was wondering if any other developers had to use a custom analyzer / tokenizer or simply custom tokens for their lucene document fields. we have a field let’s say “car list” which would benefit from indexing the car “brand”, “name” and “color” all in one field. our goal is to index three tokens …
lucene document field tokens
atlassian.com
2021.17
[ { "text": "what we ended up doing is creating our own tokenstream that builds a field with the three tokens general motors , acadia and dark blue.\n\nwhen searching using a phrasequery, we were able to search by exact token in the index.", "name": "", "is_accepted": true } ]
aa3ef58185bfbac1f1e101910ea6cb5c
with php code below: class jsoncontroller extends zend\_controller\_action { public $authorization\_server\_url = "https://auth.atlassian.io"; public $expiry\_seconds = 60; public $grant\_type = "urn:ietf:params:oauth:grant-type:jwt-bearer"; public $scopes = "read write act\_as\_user"; // case-sensit…
problems with jira cloud authentication on my jira cloud app
atlassian.com
2021.21
[ { "text": "hi [@matti.kiviharju](/u/matti.kiviharju),\n\n\"sub\" => 'urn:atlassian:connect:useraccountid:'.$appkey,\n\ninstead of $appkey that should be the accountid of the user.\n\non another note, you need to replace the authorization server hostname auth.atlassian.io with oauth-2-authorization-server.services.atlassian.com.\n\nthe deprec…", "name": "", "is_accepted": true } ]
e5d97061612e3c4d1441cdc33b931d98
we have a request form in which the summary field is hidden and assigned a preset value, the intention of this is that any issue created with this request type will have the same text as their summary. we use the “rest/servicedeskapi/request” api to fetch and show the results on our site, but the su…
get the preset value of the hidden summary field through the api
atlassian.com
2021.10
[ { "text": "i missed your note that you want to make this request as a jsm customer. in that case, i’m not sure it’s possible.", "name": "", "is_accepted": true } ]
33b62d54f5ee949b200091a2ad7a4079
hello! i’m new to jira plugin development. please excuse me if my question is to silly. i’m trying to develop plugin for our org. for some reason my web items are not displayed it rapidboard menus. i supposed i’m using wrong locations [screenshot](https://prnt.sc/o62r7c) could someone please suggest: how to add new ite…
how to add buttons to locations on ss
atlassian.com
2021.17
[ { "text": "the easiest way to find out if there are web fragment locations is to use the [web fragment finder](https://marketplace.atlassian.com/apps/1211656/web-fragment-finder?hosting=server&tab=overview). if you can’t find a location that you like there’s always the possibility of adding your own buttons using javascript.\n\nfor that you would want to create a [web resource](https://developer.atlassian.com/server/jira/platform/web-resource/) which requires your js for a spe…", "name": "", "is_accepted": true } ]
1d096eb9ed176f9d55f20f0c656596c3
since the new apis have been rolled out 100%, can we now remove the gdpr flag from the descriptor and x-atlassian-force-account-id from the header?
can we remove the gdpr flag from the descriptor now?
atlassian.com
2021.17
[ { "text": "hi [@chisiang.ng](/u/chisiang.ng),\n\nwe’ll most likely leave the gdpr flag in descriptor and possibly the header for the meantime. we do weekly updates so in case of removal, this would be announced here as well.\n\ncheers,\n\nanne", "name": "", "is_accepted": true } ]
4091225fc09c8ed6b144c8fe0c17199d
hi, i’m on the processes of creating a bitbucket plugin/app, to later be open sourced using the developers sdk and i see 3 dependencies in my pom.xml file which i would like to know their open-source nature: bitbucket-spi (scope: "provided") bitbucket-api (scope: "provided") bitbucket-parent ar…
publishing an open-source plugin for bitbucket server
atlassian.com
2021.17
[ { "text": "hi [@matti](/u/matti) - open sourcing a plugin/app is acceptable. as for those dependencies – you can reference the dependencies in your pom file. do not, however, bundle atlassian product source code into your repo. that’s prohibited, even if you do have access to the source (i mention that because paying cust…", "name": "", "is_accepted": true } ]
ad4658f6bf90b6b4374fd10842d34d4e
what forge components can we used for the app contest at [devpost.com](http://devpost.com) is it forge ui kit or forge custom ui thanks
about codeigeist app contest
atlassian.com
2021.39
[ { "text": "yes, you can use either ui kit or custom ui!", "name": "", "is_accepted": true } ]
af049e20152a31ea64024fc69ede7f6f
i got this error cannot read property ‘trim’ of undefined when i set the data-options for <script src=“<https://connect-cdn.atl-paas.net/all-debug.js>” … here is the screenshot: [[invoices%20-%20jira%202018-12-22%2022-38-38]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/6/3/638a68004734834c016584122f96250728a172cf.png "invoices%20-%20jira%202018-12-22%2022-38-38") i tried both all.js and all-debug.js, the result is the same. when i set…
all.js loading error: cannot read property 'trim' of undefined
atlassian.com
2021.17
[ { "text": "resolved, i had a typo and used = instead of : for key:value params;", "name": "", "is_accepted": true } ]
5467e23326fa7509eb22323efb7c8df6
hi, we are currently developing an addon for jira cloud ([maxonjira.atlassian.net](http://maxonjira.atlassian.net)). it worked well for several days then it stopped working on jira with this error message (see log output below): installation verification error: 401 clientkey in install payload did not match authenticated client n…
registering a jira add on
atlassian.com
2021.39
[ { "text": "shot in the dark: did you upgrade your app to handle the [qsh thing](https://community.developer.atlassian.com/t/action-required-atlassian-connect-vulnerability-allows-bypass-of-app-qsh-verification-via-context-jwts/47072) and make a mistake?", "name": "", "is_accepted": true } ]
d8c76d78744d979a8f2359706a34d9bc
it seems like you are not only migrating from sc to emotion, you are also upgrading emotion packages in the process. it is now no longer possible to use the latest version of @atlaskit/button (15.1.7, published 19 days ago) in combination with the latest release of @atlaskit/select (15.0.0, publish…
atlaskit migration from sc to emotion introduces breaking changes
atlassian.com
2021.31
[ { "text": "hey remie!\n\njust responded to your comment in [this thread](https://ecosystem.atlassian.net/browse/ds-6836?focusedcommentid=635619) and created a follow-up ticket for you here: [ds-7725](https://ecosystem.atlassian.net/jira/servicedesk/projects/ds/queues/issue/ds-7725)\n\ncan we continue the conversation there :pray:\n\nhere’s some context for others that might come across this issue:\n\nthanks for the heads up, i definitely want to figure out why you’re seein…", "name": "", "is_accepted": true } ]
ac21a588d20f8bf54d15847c604f1c04
hello, as an admin is it possible to call rest apis as another user in confluence?? thanks syed
confluence rest api calls on behalf of another user
atlassian.com
2021.39
[ { "text": "i understand the use case.\n\nyou need to write a confluence plugin for this.\n\nit is not impersonate then call rest apis, but it is impersonate then use confluence java api to perform a search on behalf of the user and return it back to the caller.\n\nin your plugin, you will expose your own rest api. y…", "name": "", "is_accepted": true } ]
bddc8ef2fe3fe30b5bc9fd507caf8849
hi i am working on the implementation of the app data export for our server plugin. therefore do i need all the space keys of the migrated spaces. i thought that i could retrieve those over the space mappings (or space mappings in combination with sql calls). i tried to get the space mappings the s…
can't retrieve space mappings & how to get only migrating space-ids
atlassian.com
2021.25
[ { "text": "hi [@jrichards](/u/jrichards)\n\nwhen a customer makes a partial migration and only migrates one or two spaces, then we shouldn’t update our space settings in cloud for all migrated but only for the most recent ones.\n\nmy colleague pointed out that there also are paginatedcontainers which are used as we expect (only s…", "name": "", "is_accepted": true } ]
5f96e4b9b76b774ce6e6e4e9046376a0
hello! i would like to allow users of an app to connect their jira instance, allowing the app to access their epics and issues via an api. access like this is trivial to implement for most other services (e.g. github, trello, slack) using oauth2 flow (user presented with a dialog and then they ent…
best way to implement basic data retrieval
atlassian.com
2021.17
[ { "text": "hi [@assembledadam](/u/assembledadam),\n\nwe’re working on bringing a [full-fledged oauth2 flow to jira cloud](https://trello.com/c/xfys3iku/2-simpler-authentication-options-3lo) as soon as possible, it’s one of our highest priorities:\n\nin the meantime, you can either build an atlassian connect app which can make authenticated requests to jira ([zendesk’s integration](https://marketplace.atlassian.com/plugins/zendesk_for_jira/cloud/overview) is a good example of ho…", "name": "", "is_accepted": true } ]
1998e2aa233d83d66b616feea4acff54
hey guys, i’m having a hard time searching on docs a way to create a worklfow through java api and updating a workflow scheme for all existing projects. this is what i got so far… private jiraworkflow createcustomworkflow() { jiraworkflow workflow = null; // check if it alread…
create workflow through java api
atlassian.com
2021.17
[ { "text": "for each transition, you need to create a resultdescriptor:\n\nresultdescriptor result =\n\ndescriptorfactory.getfactory().createresultdescriptor();\n\nresult.setstep(barstep.getid());\n\nresult.setoldstatus(\"foo\");\n\nresult.setstatus(\"bar\");\n\nthen you need to give that result as the unco…", "name": "", "is_accepted": true } ]
3536c1c18a4a70657afbb00b7b110712
not sure if this is the right place for this, but i’m using firefox and i can’t seem to open the atlaskit website (<https://atlaskit.atlassian.com/>). when i open the console it says “notfounderror: node was not found”. [image] i’m on firefox developer edition 64.0b10 (64-bit).
the atlaskit website does not open on firefox
atlassian.com
2021.17
[ { "text": "thanks for letting me know [@btodd](/u/btodd) and [@rwhitbeck](/u/rwhitbeck). it turns out it was an add-on called “[saka key](https://addons.mozilla.org/en-us/firefox/addon/saka-key/)” that caused the issue. one of the add-on’s reviews mentions that it breaks some sites. i guess i’ll just have to do without it.\n\nthanks for letting me know it worked for you!", "name": "", "is_accepted": true } ]
cfb4312910164074db0e3fdc9fc67edb
currently i’m using following url to get a list of all users (to be displayed in user picker): /rest/api/search?limit=20&cql=type=user the problem is that this way of searching users [has been deprecated](https://developer.atlassian.com/cloud/confluence/deprecation-notice-search-api/). according to suggested approach, i’m looking at how to use /rest/api/search/user endpoint inst…
how to return list of all (preferably non-app) users using rest/api/search/user endpoint?
atlassian.com
2020.34
[ { "text": "hi [@lukaszwiatrak](/u/lukaszwiatrak),\n\nmaybe i don’t quite understand your question, but have you tried /rest/api/search/user?limit=20&cql=type=user?\n\nregards,\n\ndugald", "name": "", "is_accepted": true } ]
9f9a0891da27e271d6ea9b98e36dd34e
dear atlassian community, we have a problem regarding testing different types of tokens/licencing states. we have an add-on published as private on our vendor account. after generating the token, we install the add-on on another instance of jira using generated token. everything works just fine, b…
problem with managing tokens/licensing
atlassian.com
2020.34
[ { "text": "i’m assuming cloud?\n\nfirstly make sure you have \"enablelicensing\": true in the atlassian-connect.json\n\nthen as far as i know there are two ways to check license status (which of course [the docs](https://developer.atlassian.com/platform/marketplace/cloud-app-licensing/) don’t tell you).\n\ncheck for ?lic=active in the url query\n\nap.context.getcontext(response => console.log(re…", "name": "", "is_accepted": true } ]
4bbaec552573273827f31d9faaf9b730
i have a jira server app that makes use of webpack and atlassian-webresource-webpack-plugin (version 4.1.0) to run react code. i didn’t have any problems with atlaskit components until i tried to use @atlaskit/editor-core (version 98.13.6). i have following error in browser console: uncaught refer…
problem with atlaskit component and wrm plugin
atlassian.com
2021.17
[ { "text": "i just add my bundle as a script to html page that is defined as a web resource.\n\ni am not sure i understand what you mean by this. do you mean you’re doing something like this?\n\n# webpack.config.js\n\nmodule.exports = {\n\nentry: 'my-app.js',\n\noutput: {\n\nfile: '[name].js'\n\n}\n\n};\n\n# my template fi…", "name": "", "is_accepted": true } ]
3636bc4765e7db21fcc2d0ae1227963b
after creating a new forge app, deploying it to production, and setting it to ‘shared’ distribution, the resulting installation link always returns a 403, app not found: [image] additional reproduction info: forge cli version 1.4.0 app template used: (pristine) confluence-macro-typescript respon…
forge app installation link returns 'app not found'
atlassian.com
2021.25
[ { "text": "retried today, and things works again for all three test apps that did not work yesterday!\n\nnotably, the installation links given by the developer console yesterday lacked a signature query parameter that is present in the links generated today.\n\nso might have been related to (and fixed with) the oa…", "name": "", "is_accepted": true } ]
87e6b1c2206f1967820c06132daa5cfa
hi! i’m creating now plugin to copy specific tags from fork to upstream when pull request will be accepted. i must check if user has permission to create tags on upstream. i use @eventlistener pullrequestmergedevent, but hooks can be enabled/disabled on each repo/project without any additional stu…
hooks vs @eventlistener
atlassian.com
2021.17
[ { "text": "hooks are better in my case. i have more control on when this event should be triggered.", "name": "", "is_accepted": true } ]
d2a9a234912638979b154bdf86c5d1fc
i have several manatee.trello clients who have recently been broken without any changes on their end. they did note, however, that when they disabled the custom fields power up, it started working again. the error that the api is returning is “invalid value for plugins.” i don’t have any request i…
custom fields in the api broken
atlassian.com
2019.43
[ { "text": "it looks like we shipped a change where we started enforcing a validator on that parameter. the valid values are: none, enabled, available, all. \nwhat i’ve not figured out yet is why this was previously working because that validator is very old. \nwould that call actually include the plugins? i woul…", "name": "", "is_accepted": true } ]
b6da9bed50b9a0a8d2546ecea277348f
i’m trying to add a field to select issues after the addon has been installed. however, when i try to access the currently available fields, i get a status 400. if i add useraccountid to the httpclient it works. addon.on('host\_settings\_saved', async (clientkey, data) => { const httpclient = a…
status 400 when accessing jira cloud api endpoints anonymously inside ace lifecycle hook
atlassian.com
2021.17
[ { "text": "ok, i found a hacky solution.\n\ni needed to wrap my function in a settimeout and wait 5 seconds before calling it.\n\nlooks like this lifecycle hook gets called a little bit early.", "name": "", "is_accepted": true } ]
0727f8b3f3a210fb14b78be6a7d0d300
i have an osgi plugin in which i have eventlisteners. when i recieve an event (loginevent for example) i would like to retrieve the user’s (remote) ip address. i’ve tried executinghttprequest.get().getremoteaddr() but get npe. i believe get() is returning null. any pointers?
retrieve user ip address from eventlistener in an osgi plugin
atlassian.com
2021.17
[ { "text": "inject the dependency httpcontext and then use the getrequest() method.", "name": "", "is_accepted": true } ]
94c7407939f0fd142287a09218e467ca
(reposted from <https://community.atlassian.com/t5/confluence-questions/how-to-get-the-spacekey-to-use-in-the-blueprint-wizard/qaq-p/1384387> once i realised the developer community is different to the user community ) in a confluence blueprint wizard, is it possible to have the spacekey of the inten…
how to get the spacekey in a blueprint wizard
atlassian.com
2020.34
[ { "text": "i found a solution.\n\nvar spacekey is defined in the global context:\n\n(function ($) {\n\nvar spacekey; //to be set in a callback\n\n...\n\ni already had a function registered for the post-render hook:\n\nwizard.on('post-render.page0', postrender0);\n\nin that function, the chosen spacekey is pa…", "name": "", "is_accepted": true } ]
16ba21b5caaedc476230bd82e4c8d9d6
somehow, i stopped receiving emails from new posts on cdac since last wednesday. checked all setting and everything seems fine. anyone else experienced this?
stopped receiving email notifications about cdac posts
atlassian.com
2021.10
[ { "text": "alright. we’ve found the issue. it looks like sendgrid was putting folks on a bounce list. both [@yvesriel](/u/yvesriel) and [@sven.schatter](/u/sven.schatter) should be removed shortly.\n\nanyone else not getting emails?", "name": "", "is_accepted": true } ]
5452492f3bfc4f93c339483f3df240c7
i’m attempting to follow the example described here: [bitbucket](https://bitbucket.org/atlassian/atlassian-connect-spring-boot-samples/src/master/atlassian-connect-spring-boot-sample-ajax/) the ajax request is being sent to my add on successfully, however it always gets a 401. after a little debugging i’ve discovered this is because of the following error “com.atlassian.connect.spring.internal.jwt.jwtinvalidclaimexception:…
send a request from an iframe is receiving a 401
atlassian.com
2021.39
[ { "text": "[@martincassidy](/u/martincassidy) please have a look here: [action required: atlassian connect vulnerability allows bypass of app qsh verification via context jwts](https://community.developer.atlassian.com/t/action-required-atlassian-connect-vulnerability-allows-bypass-of-app-qsh-verification-via-context-jwts/47072) . it seems like you need to change your authorization check.", "name": "", "is_accepted": true } ]
737b00712bc4a3b188d3048fa02d9e4f
hi there! we have an app that has been allowed access to the email rest api so we’ve added the access\_email\_addresses scope to our descriptor. this allows us to get email addresses of users using the following endpoints: [/rest/api/user/email?accountid={accountid}](https://developer.atlassian.com/cloud/confluence/rest/api-group-users/#api-api-user-email-get) [/rest/api/user/email/bulk?account…](https://developer.atlassian.com/cloud/confluence/rest/api-group-users/#api-api-user-email-bulk-get)
email addresses in "/rest/api/group/member" - when are they included and when aren't they?
atlassian.com
2020.50
[ { "text": "hi [@sven.schatter](/u/sven.schatter),\n\nyour questions make a lot of sense and thanks for taking the time to articulate them so well. i have a couple of answers which i hope helps explain why things are this way, but bear in mind there’s quite a bit of legacy we’re dealing with so i recognise it’s not necessarily an id…", "name": "", "is_accepted": true } ]
8880342ab53139b3525a147fc26f6af5
cause: when i try clone issue with due date in the past. error: admin.errors.exception com.atlassian.jira.exception.createexception: error occurred while creating issue through workflow: due date: invalid due date. please enter a future date. any solution? i have a lot of issues to clone with ol…
clone issue with due date in the past
atlassian.com
2021.17
[ { "text": "have you checked the workflow of the project that you’re cloning into? i’m guessing that there is a validator or condition blocking you.", "name": "", "is_accepted": true } ]
12cf12a0a917baf6dae2afc2e5607a6d
hi, i’m trying to get a link to the configuration page of our addon in the customers instance. we are using atlassian-connect-express. basically, what i want to do is to add a postinstallpage , and from there link to the configuration page. how can i get the link to the configuration page?
get link to addon configuration page
atlassian.com
2021.31
[ { "text": "after some searching i found: <https://developer.atlassian.com/cloud/confluence/modules/admin-page/> with the following information:\n\n{\n\n\"key\": \"my-addon\",\n\n\"modules\": {\n\n\"configurepage\": {\n\n\"key\": \"configure-me\",\n\n}\n\n}\n\n}\n\nwill have a configuration page module with a …", "name": "", "is_accepted": true } ]
c028f1bf0ea16ee2ae163749bf6bbda3
hi, we can specify custom styles for webitems. <https://developer.atlassian.com/cloud/jira/platform/modules/web-item/> where can i define these custom styles? for examples, where are “webitem” or “system-present-webitem” defined on? "styleclasses": [ "webitem", "system…
jira cloud web item syleclasses
atlassian.com
2021.17
[ { "text": "you can’t. the styleclasses are basically remnants from original connect version which was very much a 1:1 to server’s atlassian-plugin.xml. since then the two platforms have diverged and while things like this still exists - they’re pretty much useless on cloud.", "name": "", "is_accepted": true } ]
f8e53a1346abd235dd48f34f5b07dee0
hi, we are developing an addon using ac-springboot and i have some questions regarding license check. 1- we want to check if the addon’s license is valid for every request made to our server from our addon’s pages. we can get the license status by sending a request to [get /rest/atlassian-connect/…](https://developer.atlassian.com/platform/marketplace/license-api-for-cloud-apps/)
best way to check addon license for requests made from addon's page
atlassian.com
2021.04
[ { "text": "[@berkayztrk](/u/berkayztrk) when using ap.context.gettoken(), you can use the \"license\" field of the jwt token payload to verify the license state (see [context information format](https://developer.atlassian.com/cloud/jira/platform/cacheable-app-iframes/#getting-context)).\n\nobtaining that field currently in atlassian-connect-spring-boot is rather cumbersome, however, so it sounds like [acspring-88](https://ecosystem.atlassian.net/browse/acspring-88) would hel…", "name": "", "is_accepted": true } ]
e1bef73d349682256c88d1d6f0e1c5ee
hi community i have faced discrepancy in docs & results here was anounced limitation and sorting “100 most recent items” <https://developer.atlassian.com/cloud/jira/platform/change-notice-changelogs-are-now-limited-to-the-100-most-recent-items/> but /rest/api/2/search?expand=changelog returns chan…
changelogs sorting/limitation rest api
atlassian.com
2021.17
[ { "text": "[@avelit](/u/avelit), just wanted to confirm that the limit of 100 changelogs returned by api/2/search and /rest/api/2/issue/ endpoints is now in place. as part of the limitation, we changed the default ordering of changelogs returned by these endpoints from ascending to descending. the reason being that for lim…", "name": "", "is_accepted": true } ]
d0c16958c4bbdf8537b275ac1014e8d2
using the code below, the submit and the cancel buttons are not lined on the right: the submit is displayed on the left side and the cancel on is aligned right but in the next line (after a line-break): <modaldialog header="my modal dialog" onclose={() => setopen(false)}> <form onsubmit={data…
modaldialog with form: buttons "submit" and "cancel" are not correct aligned and in different lines
atlassian.com
2021.31
[ { "text": "i have found the problem: i had to add the following code snippet into my index.html to get the proper css styles and look & feel …\n\n<!-- necessary to allow inline-styles of atlaskit components, which will not be rendered properly if omitted -->\n\n<meta http-equiv=\"content-security-policy\" con…", "name": "", "is_accepted": true } ]
afade2da6d8bc8e945bf1d3e1310caf7
hello there, i am using ap.confluence.getmacrodata to get macro parameters of a confluence macro. however, if i have an equal symbol (=) in my parameter value, i do not get the part of the parameter value post the equal symbol. for eg: if there is a macro parameter with name cattr and value as bel…
parameters retrieved using getmacrodata is stripping off parameter value after '='
atlassian.com
2021.17
[ { "text": "[@anon62119125](/u/anon62119125), this was reported as [confcloud-68163](https://jira.atlassian.com/browse/confcloud-68163). [@kevindietz](/u/kevindietz) has already implemented a fix, which is just pending release.", "name": "", "is_accepted": true } ]
38278cd16beafac3faf55f1a5dbb437f
i could install the app with post {{cloudbaseurl}}/rest/plugins/1.0?token=... for licensing i tried to use put {{cloudbaseurl}}/rest/plugins/1.0/{{cloudpluginkey}}-key/license and post, but i keep on getting “405 method not allowed”. is there any documentation on this, or should this not be use…
how to install a license token or license via upm manager /rest/plugins/1.0/{{cloudpluginkey}}-key/license
atlassian.com
2021.39
[ { "text": "the post/put part is not too explicit there …\n\nfunny enough i found a npm package, that does it quite well, written by someone of our company … :slight\\_smile: and it works with this.\n\n@resolution/atlassian-upm-client", "name": "", "is_accepted": true } ]
2bfbfc77920e8d863f466417a1b57b2f
hi devs, we are trying to use the [confluence cloud content search api](https://developer.atlassian.com/cloud/confluence/rest/api-group-search/#api-api-search-get) to search for content in a specific instance. however, we notice that the expected results documented was not available in the response. in the example response, we would expect the totalsize based on the searched cql. [[screen…](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/0/8/08a4c712eb158d45184e8ef4aa2933cd7200214c.png "screenshot 2021-07-06 at 5.07.00 pm")
confluence content search api does not return the expected fields
atlassian.com
2021.31
[ { "text": "i think you are hitting [content/search api](https://developer.atlassian.com/cloud/confluence/rest/api-group-content/#api-api-content-search-get) instead of <https://developer.atlassian.com/cloud/confluence/rest/api-group-search/#api-api-search-get>", "name": "", "is_accepted": true } ]
42b316daddd0b71a5fee28fea66eeb34
is it possible to create multiple workflow validators with forge modules? this is my manifest.yml and it is giving me error if i add more than one validator. modules: jira:workflowvalidator: - key: validator expression: issue.assignee != user name: validator description: validator jir…
multiple workflow validator
atlassian.com
2021.21
[ { "text": "hi [@odinson](/u/odinson), you should declare multiple modules of the same type under the module type, i.e. just under the jira:workflowvalidator:\n\njira:workflowvalidator:\n\n- key: validator\n\nexpression: issue.assignee != user\n\nname: validator\n\ndescription: validator\n\n- key: validator-two\n\n…", "name": "", "is_accepted": true } ]
433b4baf746ad1cb57f25e004d44ec17
hey community, i’m writing a rest plugin module to handle an incoming webhook. the request does not carry an authorization header, so i annotated the method in the rest servlet with @anonymousallowed as described in the atlassian-rest-api-design-guidelines [docs](https://developer.atlassian.com/docs/atlassian-platform-common-components/rest-api-development/atlassian-rest-api-design-guidelines-version-1#atlassianrestapidesignguidelinesversion1-security). however, during testing i get a 401 …
plugin rest module anonymous access
atlassian.com
2021.17
[ { "text": "i found the problem: by default jira demands that all incoming request (from outside application pages) are whitelisted. you can either turn this function off, or add the incoming webhook origin pattern to the whitelist. both options are done in the admin>system>security>whitelist section.", "name": "", "is_accepted": true } ]