id
stringlengths 32
32
| text
stringlengths 0
895k
| name
stringlengths 0
33k
| domain
stringlengths 5
44
| bucket
stringclasses 19
values | answers
list |
---|---|---|---|---|---|
2b7483d0207d1444d33008c8adc5bded | hi,
i’m developing for jira for the first time. i’m probably missing something obvious.
i’ve created a web-panel as outlined here: <https://developer.atlassian.com/cloud/jira/platform/modules/web-panel/>.
it took me some time to figure out how to load the template, but found routes/index.js and add… | app is not responding | atlassian.com | 2021.21 | [
{
"text": "have you loaded all.js into your iframe?\n\nit looks like you are using ace but, if the all.js file is not being loaded into your iframe then the javascript bridge will never be established between the host product and your iframe and that message will eventually show up. the symptoms would match.\n\nha…",
"name": "",
"is_accepted": true
}
] |
2d6446da501dc1b1b33c88b2375030b7 | hello,
i’m using oauth to authenticate my user and the full dance is done without any problem. the issue is when i try to perform any request using my user access token: i get a signature\_invalid error response.
the jira i’m using is accessed through a nginx https reverse proxy.
i already followe… | issue using jira api behind an https reverse proxy | atlassian.com | 2021.17 | [
{
"text": "the problem was that i added the port (:443) in the oauth request.\n\nby removing it the signature became valid…",
"name": "",
"is_accepted": true
}
] |
2330235273edb4631a31329013e99ef4 | hi,
when i call a library, such as “etherspot”, needs to call out for querying a graphql, what content type of the permission should i use?
i did try to add following permission in manifest.yml, but fail.
permissions:
external:
fetch:
backend:
- ‘<https://etherspot.pillarproject.io>’
error mes… | i need external permission for graphql query in forge, is that possible? | atlassian.com | 2021.39 | [
{
"text": "hi [@mingderwang](/u/mingderwang), the fetch.backend declares where your app’s backend functions can connect to.\n\nfor frontend, you’ll want fetch.client instead <https://developer.atlassian.com/platform/forge/manifest-reference/permissions/#client>",
"name": "",
"is_accepted": true
}
] |
6a3a2b431a8384d5c2f0195b17c16ef0 | hi,
is it possible to execute some methods (rest calls) if my addon is installed?
i want to get some content from confluence with a rest call and i need the admin rights to see all the data. so my idea is to execute this one time if my app is installed (because then the admin should be logged in). … | execute a method after app install | atlassian.com | 2021.39 | [
{
"text": "hi [@anon60878045](/u/anon60878045),\n\nhaving administrative privileges does not mean access to all content. administrative privileges relates to the access to product capabilities, not content access.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
8e81c10cc7b97ba6b3d90c65f17c15f5 | hi,
i am creating a cloud plugin. my rest call is:
$(document).ready(function() {
$("#sampleform").submit(function(event) {
util.makeajaxcall({
contentel: $("#msgdiv"),
url : "/rest/agile/latest/board",
type : "get",
contenttype : "application/json",
… | cloud rest call returns 403 | atlassian.com | 2021.17 | [
{
"text": "hi, [@ubangy](/u/ubangy). i was able to replicate the issue you encountered. checking [jira software rest scopes](https://developer.atlassian.com/static/connect/docs/latest/scopes/jira-software-rest-scopes.html), the {version} only accepts the value 1.0, not like the others that accept latest. in my test jira cloud app where i replicated the issue, i changed “latest” to “1.0” and works as expected.\n\nhope this …",
"name": "",
"is_accepted": true
}
] |
3e449357a5e41310159c59499f04367c | hello,
i added my app as a new listing on the marketplace (private app), and generated an access token but it does not install on a jira instance. when send a post request to the /installed endpoint i receive the following message:
“no baseurl provided in registration info” with 401 status code
a… | jira cloud 401 on install: no baseurl provided in registration info | atlassian.com | 2021.31 | [
{
"text": "hello [@ccurti](/u/ccurti),\n\ni think i figured it out what was the issue. i added the created cloud app to our production environment and i have created a specific restricted user for it. the problem is local meaning the created local db user did not have permissions to access the addonsettings table …",
"name": "",
"is_accepted": true
}
] |
ab14952550990e20486d3bb942776ae3 | i see many apps on marketplace that does it. i wonder if the same thing applies to forge? | is it possible to install forge app on a different website, not on atlassian marketplace? | atlassian.com | 2021.39 | [
{
"text": "[@nhatnamnguyen](/u/nhatnamnguyen) are you talking about distributing your app outside of marketplace? if so, you can use the following docs <https://developer.atlassian.com/platform/forge/distribute-your-apps/#start-sharing-your-app>.",
"name": "",
"is_accepted": true
}
] |
321135e1a683896b3fe96aa1b6bfb354 | hello!
i tried to run my test plugin with active objects example through atlas-debug and got following error:
[error] failed to execute goal com.atlassian.maven.plugins:maven-amps-dispatcher-plugin:6.3.15:debug (default-cli) on project limetime-atlassian: couldn't detect an amps product to dispatc… | [active objects] failed to run plugin: couldn't detect an amps product to dispatch to | atlassian.com | 2021.17 | [
{
"text": "it looks like you’re missing the amps part of the plugin section. i would suggest running atlas-create-jira-plugin to create a temporary plugin in a different directory. then copy the relevant chunks over to your pom.xml",
"name": "",
"is_accepted": true
}
] |
c79bd5e7112806ce9bc76237c1da9d73 | hi! when i call the /wiki/rest/api/user/email/bulk?accountid=1 ( [api docs](https://developer.atlassian.com/cloud/confluence/rest/#api-api-user-email-bulk-get) ) then it returns json with acountid and email. it works ok with accountid=2 too. but when i merge them together /wiki/rest/api/user/email/bulk?accountid=1&accountid=2 then i got an error 401.
there was [a similar topic](https://community.developer.atlassian.com/t/weekly-gdpr-api-status-development-update-april-5/28617/2) for ji… | rest api call "email addresses in batch" returns 401 for multiple but not for single accountid | atlassian.com | 2020.34 | [
{
"text": "hi, thanks for the hint. we discovered that the values for the repeated parameter accountid in canonical query string should be ordered alphabetically. in the [documentation](https://developer.atlassian.com/cloud/bitbucket/query-string-hash/#qsh-claim) there are no examples where values are in unsorted state and then get sorted. it would be helpful to add some unsorted example …",
"name": "",
"is_accepted": true
}
] |
55d87f7403febca3bb7d2bb387d2e8e0 | i am wondering if there is a way to call ajs.macrobrowser.setmacrojsoverride() outside of a plugin? for example, calling ajs.macrobrowser.setmacrojsoverride(“my-macro”, {opener: …}) from the customhtml page or adding it to one of the pages in the layouts section?
i know i can call this within a pl… | is there a to call similar to ajs.macrobrowser.setmacrojsoverride() that can be made outside a plugin? | atlassian.com | 2021.17 | [
{
"text": "i call it from custom html within confluence. in my instance, i am customizing the options the bob swift sql macro presents to users.\n\n<script>\n\najs.toinit(function(){\n\najs.bind(\"init.rte\", function() {\n\najs.macrobrowser.setmacrojsoverride('sql', {\n\n\"fields\": {\n\n\"string\": function(param, op…",
"name": "",
"is_accepted": true
}
] |
33543e23e4a1c23603d768fb45da4362 | hi folks,
tried to set a place holder for my select2:
ajs.$("#select-connections").auiselect2({
placeholder: "select a connection",
allowclear: true
});
this however does not work and select selects the first option automatically…
second i tried to clear the selected option i… | using a placeholder and clearing the select2 | atlassian.com | 2021.17 | [
{
"text": "ok. seems i have found a solution. no problem with implementation. to add a placeholder you have to include in your html velocity template a empty <option> first.",
"name": "",
"is_accepted": true
}
] |
c246582a3ff76bb85cc509b5b2d72dff | i try to add a button at the top right corner of the jira board using the following config:
"location": "jira.agile.board.tools"
however, it seems like i can only add dropdown list. does jira not support button for a plugin? sounds a bit strange to me.
in the [boards](https://developer.atlassian.com/cloud/jira/software/boards/) documentation, it says: “you c… | add a button instead of dropdown list in jira scrum board | atlassian.com | 2021.31 | [
{
"text": "hi [@ryanrules1](/u/ryanrules1) ,\n\nthere are differences in what is supported between company-managed and team-managed project boards. company-managed project boards allow apps to define drop down menus whilst the team-managed project boards support the addition of buttons. i’ve created a demo for the latter at [http…](https://glitch.com/edit/#!/dx-sw-board-tools-web-item-app?path=connect.json%3a30%3a0)",
"name": "",
"is_accepted": true
}
] |
1db93a35d742bac82e0d393b90643189 | [@daz](/u/daz)
aui 9.5 from npm includes in the dist directory:
aui-prototyping.js
and
aui-prototyping.nodeps.js
what is the difference? i believe the nodeps files contain jquery ui code. however jquery ui is not listed as a dependency for aui usage in the documentation at [- aui documentation](https://aui.atlassian.com/aui/latest/docs/getting-started.html) .
i’m as… | aui from npm and dist files | atlassian.com | 2021.31 | [
{
"text": "hi [@marc](/u/marc) , from the aui changelog:\n\na new aui-prototyping.nodeps.js was added, which excludes the backbone and underscore libraries. consumers must first ensure that jquery, backbone, and underscore are available before this bundle is loaded.\n\n[https://bitbucket.org/atlassian/aui/src/5fdd50ca86648…](https://bitbucket.org/atlassian/aui/src/5fdd50ca86648119051c8b513f95074f256de4d9/changelogs/8.x.x.md?at=master#8.x.x.md-611)",
"name": "",
"is_accepted": true
}
] |
6d1be3713bd67946495482f9a3805cf6 | hi all,
i’m having an issue with modal dialogs in a forge custom ui. long story made short: my modals are working from within a debugging tunnel, but they do not work when i deploy them to the forge cloud. am i missing a configuration setting?
more detail:
i’m building a forge app that display… | my custom ui modal does not work outside of a tunnel | atlassian.com | 2021.39 | [
{
"text": "have you configured the build for your modal app to use relative asset paths? the symptoms you describe are consistent with what happens if you use absolute paths, which will likely work locally with a tunnel, but not without.\n\nsee also [accessing static assets](https://developer.atlassian.com/platform/forge/custom-ui/#accessing-static-assets) in the docs.",
"name": "",
"is_accepted": true
}
] |
2d32a056200b87134859ff04ac785117 | hello guys,
in our .vm (admin.vm) inside our plugin, we put below in order to get the base url:
<meta name="application-base-url" content="$applicationproperties.getbaseurl()">
but, $applicationproperties.getbaseurl() is empty. noting that we are doing exactly the same in confluence and jira … | $applicationproperties.getbaseurl() is not working in bitbucket plugins | atlassian.com | 2020.50 | [
{
"text": "hello,\n\nwe have this in our atlassian-plugin.xml, i think it might be related:\n\n<template-context-item key=\"applicationpropertiescontextitem\"\n\ncomponent-ref=\"applicationproperties\" context-key=\"applicationproperties\"\n\nname=\"application properti…",
"name": "",
"is_accepted": true
}
] |
558754ea9a234b7b030946c6c2223d0c | so i have been trying to store some user input into a active object but i can’t seem to get it to work. i have tried all kinds of variations on the code but nothing i try works. could someone fix my mess or atleast point me in the right direction because i’m at a loss as to what i’m doing wrong?
ba… | help with saving input to a active object using rest | atlassian.com | 2021.17 | [
{
"text": "the rest method save is expecting jira/rest/testresource/1.0/test/{issuekey}?issuekey={issuekey}&content={content}.\n\nyour ajax method is firing a post to jira/rest/testresource/1.0/test with a payload of\n\n{\n\n'issuekey':'{issuekey}',\n\n'content':'{content}'\n\n}\n\nyou can’t use a payload, queryparam…",
"name": "",
"is_accepted": true
}
] |
a72c2252cb71d5d8555a612e85b53411 | hi,
i’m trying to update a pull request in bitbucket, using scriptrunner hooked up to “pullrequestopenrequestedevent” with the next code:
package pullrequest.handler
import com.atlassian.bitbucket.pull.pullrequest
import com.atlassian.bitbucket.pull.pullrequestservice
import com.atlassian.bitbuck… | solved: updating pull request data | atlassian.com | 2021.17 | [
{
"text": "hey [@yevgen.lasman](/u/yevgen.lasman),\n\ni think you’ll need to create an instance of the builder. something like:\n\npackage pullrequest.handler\n\nimport com.atlassian.bitbucket.pull.pullrequest\n\nimport com.atlassian.bitbucket.pull.pullrequestservice\n\nimport com.atlassian.bitbucket.pull.pullrequestupdaterequest\n\nimport com.…",
"name": "",
"is_accepted": true
}
] |
22b825ddf1f4dd81e0fc2488dd9c3bd2 | ##i’m stuck in a tutorial
i was following the [creating a custom field type](https://developer.atlassian.com/jiradev/jira-platform/guides/fields/tutorial-creating-a-custom-field-type) tutorial very closely and have made only one alteration in my code, i did not put in the
<component-import key="applicationproperties" interface="com.atlassian.sal.api.applicationproperties"/>
because i’m developing for … | problem creating a "custom field type" (jira tutorial) | atlassian.com | 2021.17 | [
{
"text": "hey felix,\n\nsince v 7.x.x i had to use annotations to be able to import components properly.\n\nlike so…\n\n@scanned\n\npublic class mycustomfield extends textareacftype {\n\nprivate pluginsettingsfactory pluginsettingsfactory;\n\nprotected mycustomfield (@componentimport pluginsettingsfactory pluginse…",
"name": "",
"is_accepted": true
}
] |
bb542ee9ed0a8cd657195a3d6aa79493 | <http://docs.atlassian.com/> is currently unavailable from the uk, so i can’t access <https://docs.atlassian.com/jira/rest/latest/jira-rest-plugin.wadl> in order to build my cloud add-on | http://docs.atlassian.com/ is down | atlassian.com | 2021.17 | [
{
"text": "our apologies, service should be restored shortly. see my post here: [service outage and restoration: docs.atlassian.com](https://community.developer.atlassian.com/t/service-outage-and-restoration-docs-atlassian-com/12063)\n\ni’d also like to take the time to apologise [@jbevan](/u/jbevan) for the [connect.atlassian.com](http://connect.atlassian.com) and now [docs.atlassian.com](http://docs.atlassian.com) issues you’ve run into. we’ve only had two incidents in the past 6 mon…",
"name": "",
"is_accepted": true
}
] |
8f05621337cea3850cd8c501b3a15873 | hi community,
i have been facing a 404 error code with the confluence cloud rest api while storing the app properties. reference <https://developer.atlassian.com/cloud/confluence/confluence-entity-properties/#app-properties>
below is the rest endpoint i tried:
curl --request put --user '<email@exam… | confluence cloud rest app properties put throwing 404 code | atlassian.com | 2021.17 | [
{
"text": "i got the answer for it. actually i configured in atlassian-connect.json to appear the app configuration to admin only, thus needed to add admin scope in the config json file.",
"name": "",
"is_accepted": true
}
] |
ab70a1de4fcfffb985c5170c5f1546c5 | i used atlas-create-jira-plugin to create a skeleton plugin. inside the atlassian-plugin.xml, there is this section:
<plugin-info>
<description>${project.description}</description>
<version>${project.version}</version>
<vendor name="${project.organization.name}" url="${project.organizat… | where to find and change project.description and other values? | atlassian.com | 2021.17 | [
{
"text": "${project.xxxxxx} comes from the maven pom.xml file. you can either change the value there or place the values in the atlassian-plugin.xml",
"name": "",
"is_accepted": true
}
] |
b09095f8d97a577f5878beee58b44c6d | we want to connect to external databases using the microsoft sql server driver. this driver is present in our environment already and testing shows we can obtain an instance of it and operate on sql just fine. great.
however, we seem to be completely unable to get this to work in the atlassian sdk … | how can i provide an sql driver in the sdk to develop against? | atlassian.com | 2021.17 | [
{
"text": "i was finally able to get this working in my atlassian sdk by making some updates to the dependencies in pom.xml.\n\nfirst, i added the driver as a compile dependency.\n\n<dependency>\n\n<groupid>com.microsoft.sqlserver</groupid>\n\n<artifactid>mssql-jdbc</artifactid>\n\n<version>6.2.2.jre8</ver…",
"name": "",
"is_accepted": true
}
] |
0e4da873be6d4790bf4b94c0f44e7d38 | hi,
i’ve written a custom report plugin, which did its job for a time. however recently the externalization for some properties in atlassian-plugin.xml does not work anymore. here’s the xml file:
<?xml version="1.0" encoding="utf-8"?>
<atlassian-plugin key="${atlassian.plugin.key}" name="${projec… | externalization in report plugin (atlassian-plugin.xml) | atlassian.com | 2021.17 | [
{
"text": "i workaround this by changing the group id and the artifact id in the pom.xml. it seems like the plugin cache is an issue somehow: <https://jira.atlassian.com/browse/jraserver-27314>\n\nhowever i was not able to reproduce the problem…",
"name": "",
"is_accepted": true
}
] |
416042fba663c1ba89bb109cc92b452b | i’m trying to build a jql function that lets users find issues that have comments with certain properties that aren’t currently stored in the comments index document.
i’ve been able to find plenty of examples in the atlassian documentation and elsewhere on modifying the index document for an issue.… | is it possible to modify the comment index documents | atlassian.com | 2021.17 | [
{
"text": "if you’re wanting to change what goes into the lucene document for a given comment when jira reindexes that comment, your plugin can implement the com.atlassian.jira.index.commentsearchextractor spi. you would register your implementation via an <entity-search-extractor> element in your plugin xml. …",
"name": "",
"is_accepted": true
}
] |
10c8f91d0af0992b40aacdfa38d7ac89 | while attempting to help maintain a community project which helps publish documents onto confluence, i noticed that pages appear to be styled different. from what i gather, atlassian has started to introduce various styling changes to confluence cloud and (i assume) will be introduced in the next co… | how to indent content with new page format (2019) | atlassian.com | 2021.39 | [
{
"text": "an update, for anyone interested. there exists an undocumented, and most likely unofficially supported, mark type indentation which somewhat works on (at least) confluence cloud (2020-09-21). an example definition is as follows:\n\n\"type\": \"paragraph\",\n\n\"content\": [],\n\n\"marks\": [{\n\n\"type\": \"indentat…",
"name": "",
"is_accepted": true
}
] |
3be99bdd2f133f3dbe6eb8c90fe59ca3 | hi folks,
we have a scheduled job that is able to send out e-mails. we asked ourselves whether this should be considered a violation of confluence’s read-only mode, as sending out e-mails could theoretically be considered writing data.
if in fact we should not send out e-mails during read-only mod… | dc read-only mode: scheduled jobs and sending e-mails | atlassian.com | 2020.05 | [
{
"text": "to be honest, i had presupposed that you already know the article you have linked to now. i think it wraps up the necessary basics.\n\nadministrative configurations should be possible, assuming that admins know what they do – and when. however, i was even told that is acceptable if user profile settin…",
"name": "",
"is_accepted": true
}
] |
1ac1a1168b9db59800890dc2d4847c14 | hi
i added a topic before because i got an error in internet explorer 11 with some components ([internet explorer 11 support](https://community.developer.atlassian.com/t/internet-explorer-11-support/7667))
[@bgummer](/u/bgummer) found the problem in the version of the icon component inside the field-base. with the 8.0.1 version of the icon it works fine, but i have the same issue with other… | some components have errors in ie11 | atlassian.com | 2021.17 | [
{
"text": "hi [@carlos.fernandez](/u/carlos.fernandez) the pr has been merged and @atlaskit/[email protected] and @atlaskit/[email protected] should be released in the next hour or so :tada:",
"name": "",
"is_accepted": true
}
] |
1e8239ecc239c2b91f83339b12ac3b2c | in the process of developing a cloud plug-in, which is now published on the marketplace, it became necessary to move it to another virtual server. the domain remains the same, and the functionality has not changed significantly.
what’s necessary to consider for this operation from marketplace stand… | [dev] migrate jira cloud plugin to another server | atlassian.com | 2021.21 | [
{
"text": "hi [@piskunovigorm](/u/piskunovigorm).\n\ni don’t know if i got it right, but i don’t think that’s a problem. let’s say you setup the new virtual server. from that moment, you go to your dns management portal and change it to your new vm. even if the dns takes some time to propagate, your users will be redirected to your…",
"name": "",
"is_accepted": true
}
] |
051ef63d2e61246e9854d9cf38a34982 | hi, i’m trying to call confluence cloud rest api as an app / add-on (jwt’s iss is the app key), to create a custom content with restrictions applied.
the custom content is in the app descriptor with apisupport, the app scope includes write and i’ve granted the app user the permission to add/delete … | apply restrictions to custom content via rest api as app / add-on | atlassian.com | 2021.39 | [
{
"text": "turned out the 403 was a mismatch on how to include the jwt in request header, the prefix to call the rest api as app is jwt instead of bearer when using impersonation. to add to the confusion, i was on a confluence cloud instance that allow anonymous access, among couple of other internal and exter…",
"name": "",
"is_accepted": true
}
] |
626547bdf63ca33907e751ad9da81974 | hi,
seems neither applicationpropertiesservice nor applicationproperties contain ssh port, which is visible on /bitbucket/admin/server-settings page. does anyone know if there is a way to retrieve it in bitbucket plugin?
thanks,
viktor | how to retrieve shh port (server settings) in plugin code? | atlassian.com | 2021.17 | [
{
"text": "the ssh port can be retrieved using sshconfigurationservice.getconfiguration().getport(). but if you’re looking for the ssh clone url for a repository, you can use repositoryservice.getclonelinks instead.\n\nif you’re going to use sshconfigurationservice, make sure to add a dependency on bitbucket-ssh…",
"name": "",
"is_accepted": true
}
] |
f9d71031303b1f9bf05d5f14d41bd3e5 | hello,
i am new to plugin development for atlassian products.
i wanted to create a plugin for bitbucket server 7.10.1 and found this “latest” guide.
<https://docs.atlassian.com/bitbucket-server/docs/5.8.0/how-tos/creating-a-bitbucket-server-plugin.html>
with the latest sdk, i created the plugin an… | working tutorial/guide for plugin creation on bitbucket-server > 7.9 | atlassian.com | 2021.10 | [
{
"text": "hi [@avsaditya](/u/avsaditya),\n\n<https://developer.atlassian.com/server/bitbucket/how-tos/beginner-guide-to-bitbucket-server-plugin-development/> should work. i noticed that the link to the first tutorial seems to be broken, but the remaining tutorials should be a good starting point.\n\nbest,\n\ndennis",
"name": "",
"is_accepted": true
}
] |
146f6b007492aeea0d1e84879ec38be9 | is it possible to change creator and creation time of page after it was created through rest api? alternatively, is it possible to assign to page during its creation creator and creation time different from the time and user making a call? thank you. | how to change creator and creation time of page? | atlassian.com | 2021.17 | [
{
"text": "you can use the contententitymanager to get a contententityobject which has setcreator and setcreationdate methods and save it back.\n\nreference:\n\n<https://docs.atlassian.com/atlassian-confluence/6.2.0/com/atlassian/confluence/core/contententitymanager.html>\n[https://docs.atlassian.com/atlassian-conflu…](https://docs.atlassian.com/atlassian-confluence/6.2.0/com/atlassian/confluence/core/contententityobject.html)",
"name": "",
"is_accepted": true
}
] |
66b6309da45736a4dff8683bf520ff69 | how to check if user inherited global permission from a group or was granted a global permission directly? | check inherited permission | atlassian.com | 2021.17 | [
{
"text": "as i see it, this can’t be done via the confluence api, even the global permission action only lists all permissions by user and group.",
"name": "",
"is_accepted": true
}
] |
c113b7dd5bcd0ed9611098651c9264ad | just starting my venture to consume the trello rest api. i am using a static key and token because this is an internal process only employees within the network will be able to consume.
i was able to list boards/lists/cards/etc… but once i tried to do a write process i get the 401 unauthorized ret… | (401) unauthorized returned when try to create card | atlassian.com | 2021.21 | [
{
"text": "ended up figuring it out. my post string was this:\n\ndim screatenewcardpost as string = “?key={0}&token={1}&name={2}&desc={3}&pos=top&idlist={4}”\n\ni changed to this:\n\ndim screatenewcardpost as string = “key={0}&token={1}&name={2}&desc={3}&pos=top&idlist={4}”",
"name": "",
"is_accepted": true
}
] |
318291daf0431991e31c09d24c02b017 | hi team,
i’m trying to create a request/issue using the jsd rest api but i’m not sure which fields are available and required when calling:
<https://developer.atlassian.com/cloud/jira/service-desk/rest/#api-request-post>
in jira rest api, we do validate the data using the get create/edit issue meta… | get create/edit request metadata in jsd rest api | atlassian.com | 2021.17 | [
{
"text": "hi [@fboucquez](/u/fboucquez), can you please try the get request type fields api: <https://developer.atlassian.com/cloud/jira/service-desk/rest/#api-servicedesk-servicedeskid-requesttype-requesttypeid-field-get>",
"name": "",
"is_accepted": true
}
] |
f19ca2e0e2e47418ddfffdda6e1c699f | i want to find all issues via jql that have a custom property set.
i am aware how to build searchable properties, but here i just want to find all issues that have the property, even when the property is empty.
background: finding all issues with a custom property (added by our add-on), check the … | jql find all issues that have a custom property (no matter what content) | atlassian.com | 2021.21 | [
{
"text": "indeed, the problem is that extractions on arrays of objects are not possible.\n\ni don’t know what it is you’re trying to do, but perhaps the [bulk set issue property api](https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-issue-properties-propertykey-put) would be helpful? with it, you can e.g. set your property to something else only on issues that don’t have that property set to any…",
"name": "",
"is_accepted": true
}
] |
f935195b8a92b5fbad3fde598a938154 | i’m author of one of the macros from atlassian marketplace. it worked fine for many instances but recently with the introduction of new editor it stopped working there.
the macro can be inserted to the body while editing page.
then when page is published it only shows text ‘extension’. no requests… | dynamic macro stop working with new editor | atlassian.com | 2019.43 | [
{
"text": "hi [@stepashka](/u/stepashka), \nthere’s been a number of different issues reported against the new editor experience and macros. please see the following issues for more information and there may be others reported i’m not aware of. \n<https://jira.atlassian.com/browse/confcloud-64923#>\n[https://jira.atlassian.com/br…](https://jira.atlassian.com/browse/confcloud-65717)",
"name": "",
"is_accepted": true
}
] |
ff9f6f7360b3dad968ed35f9305f2a27 | we have a soy file in our custom bitbucket add-on.
it basically contains 3 checkboxes defining what configuration is used for the custom hook.
checking any checkbox in firefox does not get saved.
in internet explorer this works just fine.
we can even view the result in firefox. when saving there… | bitbucket hook configuration with soy checkboxes does not work in firefox | atlassian.com | 2021.17 | [
{
"text": "hi florian\n\nyes i was able to solve this and forgot to update my question on this community.\n\ni updated the gson dependency to a recent version in my pom.xml",
"name": "",
"is_accepted": true
}
] |
8ae6f86baccc6940a103cd835559cc2e | hello
following the ticket ([kerberos/spnego/tomcat/jira 7 integration : how to bypass login process?](https://community.developer.atlassian.com/t/kerberos-spnego-tomcat-jira-7-integration-how-to-bypass-login-process/33174/2)), i wanted to write a test client to access jira rest api with kerberos authentication, more specifically with cached kerberos ticket.
no succcess with spring and kerberosresttemplate.
some succes… | kerberos/spnego/tomcat/jira rest api | atlassian.com | 2021.17 | [
{
"text": "it works fine. i achieved a junit test that creates a ticket in jira in a named project and makes the ticket go through the workflow.",
"name": "",
"is_accepted": true
}
] |
13f1abdaaba6067a137565988f81045a | hey everyone,
i’m dynamically registering custom fields of single or multi select type by using its [api](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-dynamic-modules/#api-rest-atlassian-connect-1-app-module-dynamic-post) and that part works great. then i add its options one by one with [create custom field option for apps](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-custom-field-options--apps-/#api-rest-api-3-field-fieldkey-option-post). that part also works (though it could use a bulk create of some sorts or at least a retry-af… | deleting a select custom field doesn't delete options | atlassian.com | 2021.31 | [
{
"text": "hello [@chupacabra](/u/chupacabra),\n\nthe options are not bound to the field name, but rather to the key of the custom field module. if you want fresh data for your field, change the module key.\n\nhope this helps.",
"name": "",
"is_accepted": true
}
] |
4f02a7c230fe7ae426323859ba7db601 | i try to do an active objects module but got nosuchbeandefinitionexception when trying to execute my servlet.
here is the servlet xml on atlassian-plugin-xml:
<servlet name="load and add custom gantt charts" i18n-name-key="load-add-gantt-charts.name" key="load-add-gantt-servlet" class="com.i4ware.… | i try to do an active objects module but got nosuchbeandefinitionexception when trying to execute my servlet | atlassian.com | 2020.10 | [
{
"text": "they should not prevent compilation or building the package. at the top:\n\nfound a type [com.i4ware.plugin.timesheet.ganttchartlistservice] annotated as a component, but the type is not a concrete class. not adding to index file!!\n\nthis reads to me as if you wrote something like\n\n@named\n\npublic interf…",
"name": "",
"is_accepted": true
}
] |
7392ad9b56c04fd1230689d669d2f0ec | i want to use logger with log level which is debug…
when i use a logger with error level , i got messages which written in the atlassian-jira.log…
however, when i use a log with info, debug, and so one… i have got any kinds of messages from it…
is it possible to write my messages to it or do i ha… | how can i use logger for jira plugin module? | atlassian.com | 2021.17 | [
{
"text": "so if i understand correctly, you already got this going in your class:\n\nprivate static final logger logger = loggerfactory.getlogger(yourclass.class);\n\nand when you do logger.error(\"oopsie woopsie\"); you can see the message in atlassian-jira.log but when you do logger.info(\"i need more coffee\"); th…",
"name": "",
"is_accepted": true
}
] |
91d6ab0ba6f065035be9e0ad03e1dce9 | refer to this page
<https://developer.atlassian.com/cloud/jira/platform/webhooks/#registering-a-webhook-via-the-rest-api--for-connect-apps->
currently, a maximum of 100 webhooks per app per tenant is allowed.
please advise what is the meaning of “per app per tenant”? let say i’m building a connec… | limit of webhooks for jira cloud | atlassian.com | 2021.17 | [
{
"text": "jira tenant is a jira instance, like [sitename.atlassian.net](http://sitename.atlassian.net). so you can create 100 webhooks for [sitename1.atlassian.net](http://sitename1.atlassian.net), another 100 for [sitename2.atlassian.net](http://sitename2.atlassian.net), and so on. for connect apps it doesn’t matter on behalf of which user you are creating webhooks, only on which instance (tenant).",
"name": "",
"is_accepted": true
}
] |
6a99cab67adfff2beb4b1778328b5b7b | hi everyone,
i’m trying to convert wiki to html outside jira. all the attempts returned a different html, compared to the html generated by jira.
i would like to know if there is something from atlassian that allows this conversion.
thank you in advance,
rafael morais | parse wiki to html | atlassian.com | 2020.34 | [
{
"text": "hi,\n\nwe were able to convert the wiki to html on the backend using the @atlaskit/editor-wikimarkup-transformer and @atlaskit/email-renderer dependencies. it’s quite risky because normally these dependencies require a browser dom and react for example, but i wasn’t able to find another solution.\n\nit …",
"name": "",
"is_accepted": true
}
] |
447fd22914e2906279f739489d82e41b | there exists a bug in custom ui macros using the automatic resizing feature, where if an app requires user consent, it will not be visible on the published page. a fix is being actively worked on.
for a workaround, add the viewportsize property to your module to fallback to manual sizing. | bug in confluence macros with automatic resizing | atlassian.com | 2021.39 | [
{
"text": "the fix for this bug has been shipped.",
"name": "",
"is_accepted": true
}
] |
42a11114ff86d6c0d9ecba06cfa337b1 | 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! jsd agents / jsd customer accounts users cannot be created: all directory read only (from in-product invite / rest api) | atlassian.com | 2021.25 | [
{
"text": "the problem is fixed.",
"name": "",
"is_accepted": true
}
] |
d9e4e5b37b9e0d060578a3570eac37ae | hello,
according to [this thread](https://community.developer.atlassian.com/t/ensuring-your-atlassian-connect-app-handles-customer-site-imports/41874), after a successful import, atlassian-connect-spring-boot apps must reject the first (unsigned) install request with http 401 and accept the host on the second (signed) request. i think the only way to achieve this is to set allow-reinstall-missing-host property to “… | setting allow-reinstall-missing-host property to true on production | atlassian.com | 2021.39 | [
{
"text": "hi [@emre.toptanci](/u/emre.toptanci)\n\nnew version of ace(v2.1.9) has been published which should handle site import scenario properly. could you please try with the new version and let us know if the problem persists? thank you.",
"name": "",
"is_accepted": true
}
] |
8855eb5ea0c6be4a13dbad3863f3046c | i want to send email to a user from forge ui kit, does forge has an email api for sending email messages. its urgent. thanks | forge emailing api | atlassian.com | 2021.39 | [
{
"text": "[@esedofredrick](/u/esedofredrick) no, forge doesn’t have an email api at the moment.\n\ncan you share some details about your use case?",
"name": "",
"is_accepted": true
}
] |
2245fa40cfd1b4c5496135e3c0ac04f3 | over the past few days, i had a bunch of customers contacting me that they get this error when they try to start an evaluation for my cloud app:
[[generate\_evaluation\_license]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/8/0/80dce5e7c53bee0a20fb56230d0d307b7be44e80.png "generate_evaluation_license")
i believe this is a bug in the atlassian marketplace because when i advise customers to install via jira in-product market… | why do customers fail to generate an evaluation license? | atlassian.com | 2021.17 | [
{
"text": "hey [@tbinna](/u/tbinna) - i replied on the internal ticket you created with us but i’ll also add the response here for the community.\n\nwhat some of your customers are seeing is described in [this kb article](https://ecosystem.atlassian.net/wiki/spaces/mar/pages/328231464/error+-+you+must+signup+for+ondemand+before+you+can+try+an+ondemand+marketplace+add-on).\n\nthe issue is that the customer trying to generate the license is not a billing contact as well a site ad…",
"name": "",
"is_accepted": true
}
] |
52b3c3e6d17784f5c22f6bb709c584e1 | hi,
we have developed a few apps that are needed for our business. i’ve enabled the new jira view layout for our jira instance and it stopped loading the embedded apps by default.
now we have to go to three dots […] and enable each app separately for every issue.
is there a way to enable apps to … | apps not loaded by default in new issue view | atlassian.com | 2021.43 | [
{
"text": "hey [@damianbirkowski](/u/damianbirkowski)\n\ncurrently there are no direct way to automatically load your web panel at time of loading your story/bug view. we are also looking same option. however once user loaded web panel next time it will load automatic for that story.\n\n-umang",
"name": "",
"is_accepted": true
}
] |
eaa4cd826c07a00ccb154e584f612367 | i want to make some operations in java, when assignee of a task is changed.
i can get an assignee from issue like:
@eventlistener
public void onissueevent(issueevent issueevent) {
long eventtypeid = issueevent.geteventtypeid();
long issue = issueevent.getissue().getassigneeid();
}
but it … | previous assignee | atlassian.com | 2021.17 | [
{
"text": "you want <https://docs.atlassian.com/jira/7.1.7/com/atlassian/jira/issue/changehistory/changehistorymanager.html> . basically once you know the issue - you can look up the history of a specific field.",
"name": "",
"is_accepted": true
}
] |
07913e6171eb70077b0eaa9a8910f187 | i have asked this question earlier in reference to free plugins. now this is a little bit different. now the model is paid-via-atlassian. there is no early-access feature for developers of plugins. i am launching a new plugin. but before asking for a price, i want to give free early-access to the us… | are paid-via-atlassian plugins with 100% discount counted as upm downloads? | atlassian.com | 2021.21 | [
{
"text": "you can publish an app as “beta”, which will allow you to provide access to specific customers prior to launching it on the marketplace. if you want to launch the app to the general public, but want to change prices later, i’ve seen other vendors publish it as a free app with clear notification ment…",
"name": "",
"is_accepted": true
}
] |
b17fb9fff86781f966817df6d2b02f36 | hi!
by looking at the documentation i dont think this is possible, but is there a way, maybe undocumented, for a powerup to hide a card or a list? ideally only on the client side.
for example like the “search cards” feature does.
thanks in advance | is it possible to hide a card? | atlassian.com | 2020.29 | [
{
"text": "there isn’t a way to do this.\n\nwould you mind going into a bit more detail on the use-case? curious to hear how you might use such a feature.",
"name": "",
"is_accepted": true
}
] |
0b5d6fe910f704a9565565449a37df18 | hi
i’ve noticed that the inline-dialog component breaks with styled-components "^4.4.1. the content is not visible anymore (opacity set to 0).
it still works with “styled-components”: “^3.2.6”,
to reproduce:
in package.json, set “styled-components”: "^4.4.1
code sandbox:
[image]
[@atla…](https://codesandbox.io/s/atlaskitinline-dialog-01-basic-ndu1n?fontsize=14&hidenavigation=1&theme=dark) | inline-dialog breaks with "styled-components": "^4.4.1", | atlassian.com | 2020.10 | [
{
"text": "hi,\n\nat the moment atlaskit depends on sc 3.x\n\nafaik atlaskit team’s planning to move to single css in js soluntion. after that decision is made, everything should be migrated to that solution. its tracked here <https://ecosystem.atlassian.net/browse/ds-6836>",
"name": "",
"is_accepted": true
}
] |
5723f39c336dac1e99cb3ac23bd6d443 | does anyone experiencing any problems now with aui-cdn?
on every atlassian site that uses aui there is broken styles, also my add-ons are not working. it seems like https server is down or not working because i can’t acces any files from https version, but i can from http. | aui cdn problems | atlassian.com | 2021.17 | [
{
"text": "the ssl certificate on aui-cdn.atlassian.com has expired.\n\ni have submitted a support request on the [developer support desk](https://ecosystem.atlassian.net/servicedesk/customer/portal/14).",
"name": "",
"is_accepted": true
}
] |
755efb56c3a123389eca017e2c2ae3c4 | my rest calls to /rest/api/2/project used to return issue types for the project but now they don’t. does anyone know what is happening?
thanks
paul | issue types in project rest api | atlassian.com | 2021.17 | [
{
"text": "hi, could you please reply here [unexpected/unwanted/harmfu jira project rest api changes we encountered with today](https://community.developer.atlassian.com/t/unexpected-unwanted-harmfu-jira-project-rest-api-changes-we-encountered-with-today/15520/4)\n\n?",
"name": "",
"is_accepted": true
}
] |
c87814c0ef2a8258b24c0ca5ad294354 | i have a web-item and i want to append a dynamic variable’s value to the display name of web-item. have a javascript function that return the variable. how to call this function in web-item? | how to call a javascript function from web-item? | atlassian.com | 2021.17 | [
{
"text": "hello,\n\nyou can do something like this :\n\nadd the web item in atlassian-plugin.xml\n\n<web-item name=\"mywebitem\" key=\"mywebitem\" section=\"system.content.action/marker\" eight=\"10\">\n\n<description key=\"i18n.key.for.desc\"/>\n\n<label key=\"i18n.key.for.label\"/>\n\n<link linkid=\"htmlid\"/>\n\n…",
"name": "",
"is_accepted": true
}
] |
7985f269d4e673af63775c7e9f99b3ba | hi team,
we created our cloud app and we deployed in azure with https domain. if we try to install app descriptor file through publish app option then it is throwing error.
error:
“the marketplace can’t download your add-on using the provided url. provide a publicly accessible url for your add-on… | not able to publish our cloud app in marketplace | atlassian.com | 2021.17 | [
{
"text": "hi [@danielwester](/u/danielwester) & [@rwhitbeck](/u/rwhitbeck),\n\ni missed a few extra certificates to add in app,js file. now it is working fine. i have successfully published the app and i am able to install also in my dev instance.\n\nadded code in app.js\n\nimport https from \"https\";\n\nimport fs from \"fs\";\n\nvar options = {\n\npfx: fs…",
"name": "",
"is_accepted": true
}
] |
c66345cf7bf632c4184dbe4634281862 | from this ticket, i see the jwt sub claim should be replaced by accountid from key.
<https://ecosystem.atlassian.net/browse/ac-2409>
however, in my add-on, i am still receiving the “key” as my sub claim. how can i get the accountid as sub claim? my application is based on atlassian connect spring bo… | how do i update the jwt sub claim to accountid? | atlassian.com | 2021.17 | [
{
"text": "hi [@jeffrey](/u/jeffrey),\n\nyour app would need to opt-in to gdpr to receive the accountid’s. more information here: <http://blog.developer.atlassian.com/app-opt-in-api-migration/>\n\ncheers,\n\nanne",
"name": "",
"is_accepted": true
}
] |
7cf649545b98a61ff715617c9274cdb7 | hello,
i’m working on a confluence macro using forge with custom ui. when the macro is rendered it seems to be a fixed height that has a scrollbar. is it possible to remove the height and let the macro render to the size of its content. i saw this issue which seems similar, [changing the height attr…](https://community.developer.atlassian.com/t/changing-the-height-attribute-of-customui-issueactivity-or-issuepanel-div/44189) | confluence forge macro with custom ui size issue | atlassian.com | 2021.21 | [
{
"text": "hey [@dantann](/u/dantann),\n\nviewportsize is supported by macro (small, medium, large or xlarge) this should be reflected in our documentation shortly.\n\nthanks for bringing this to our attention :slightly\\_smiling\\_face:",
"name": "",
"is_accepted": true
}
] |
f4d3138f4878756b11cb1ce6dcfb87af | is there any way to get all the context values used and evaluated by jira when loading a module?
i’m trying to have a module only display for certain request types using jira expressions + conditions[1][2].
i’ve been unable to use the customerrequest.requesttype.id context value, and i suspect it’… | context values in module condition | atlassian.com | 2021.17 | [
{
"text": "looks like it. i suggest creating a ticket in the [jsdeco](https://ecosystem.atlassian.net/browse/jsdeco) project to make the context more useful in that location.",
"name": "",
"is_accepted": true
}
] |
e784b2a773e38e6d702a1e94fbb30abc | hi guys
i seem to be having an issue i can’t figure out.
i created a forge app, using custom ui. the app is primarily for importing changes and then modifying confluence pages.
i initially created it using the jira admin page module, forgetting that the app is for confluence, but thought this wo… | unauthorized; scope does not match - forge app | atlassian.com | 2021.31 | [
{
"text": "hi guys, i figured it out on my own :grinning:\n\nbut let me share what i found, in case someone else has this issue.\n\nturns out, what may actually be obvious, is that you need to create the app, according to the product you want to use it in. since i created it as a jira app, turns it out, it would …",
"name": "",
"is_accepted": true
}
] |
ebdfc7836c244ae08f15142216ae3e96 | hi there,
today, my jira instance is telling to my add-on that there is no license.
so, i have the private listings and development mode enabled and i’ve created a token. the problem is: the “req.query.lic” parameter from the request is always “none”. this is a strange situation.
has anyone the s… | jira cloud development- licensing problem | atlassian.com | 2021.17 | [
{
"text": "rui,\n\nthis is a current known issue.\n\nplease refer to <https://ecosystem.atlassian.net/browse/ac-2357> for more information.",
"name": "",
"is_accepted": true
}
] |
44328eaa1b45b65e5e5f8dc3e46d86c7 | i need to store some data in my app, where i need to be able to query it based on property values. the data can best be stored in a relational db, whereas the current storage api only provides a key-value store.
one way is to store it outside the app, in my own hosted relational db with a thin api … | best practice for storing relational data in forge app? | atlassian.com | 2021.31 | [
{
"text": "so, how do you identify app installation and current user? is this information available somewhere in app context? if yes, then is it ok to store it in our own databases?\n\na unique identifier for the installation (installcontext) and the accountid of the current user are both available in the cont…",
"name": "",
"is_accepted": true
}
] |
86f12d117efa7abc13cf3fd703209f95 | after fade-out completes and display is set to none, the message html is still on the page, including its 4 event handlers.
why? i can save my form over and over and keep filling up the dom forever. isn’t this considered bad practice to leave elements on the dom that will never again be used? is th… | why are aui messages not deleted from the dom? | atlassian.com | 2020.16 | [
{
"text": "ok, i misunderstood your intention. looking at code it looks like message needs to also be closable to be removed by fadeout.\n\nthis seems to be working as expected -> <https://codepen.io/maciejszpyra/pen/powyzyo>\n\nplease create issue here <https://ecosystem.atlassian.net/browse/aui> because it looks lik…",
"name": "",
"is_accepted": true
}
] |
0e54951c8cfbd395699f2ec20e980153 | hey,
it is pretty simple really.
i do not succeed in running jira with service desk installed in the amps.
i have followed the guide linked below thoroughly but i can’t find the solution to this problem.
i have added the jira service desk application in the pom.xml and recreated jar file as seen… | i do not succeed to run jira with service desk in amps | atlassian.com | 2020.05 | [
{
"text": "i don’t know why it is jira-maven-plugin in the screenshot but actually i had already corrected this.\n\ni managed to solve it by changing to correct jira servicedesk version and also adding jira software.\n\nlink for reference of solution:\n\n[image]\n\n[update latest amps documentation for …](https://community.developer.atlassian.com/t/update-latest-amps-documentation-for-jira-service-desk/30350)",
"name": "",
"is_accepted": true
}
] |
e07c43fe9a724db90d0c2002ebe80919 | hi,
i’m new to confluence, node, atlassian connect and so on.
so my problem is:
i already created two addons for our cloud, which show the page-id and page-title. now i want to create a third addon that displays the creation date of the page. i know it is stored somewhere, because you can see it … | show creation date | atlassian.com | 2021.17 | [
{
"text": "welcome to the developer community, ibi!\n\nyou can access the metadata of a page, including creation date, via the [confluence content rest api](https://developer.atlassian.com/cloud/confluence/rest/#api-content-get). in your iframe you can use [ap.request](https://developer.atlassian.com/cloud/confluence/jsapi/request/) to make a request to the rest api like this:\n\nap.navigator.getlocation(function(location) {\n\nvar contentid = location.c…",
"name": "",
"is_accepted": true
}
] |
c9d51115366423d3a9b6720b3e3a04b5 | hi all,
i’m refactoring an app to use latest aui distribution, downloading the aui package as stated in here: <https://docs.atlassian.com/aui/getting-started.html#download-aui> . this page states to add following lines:
<link rel="stylesheet" href="aui/aui-prototyping.css" media="all">
<script src="… | aui, jquery and jqueryui | atlassian.com | 2020.16 | [
{
"text": "you can still use the newer aui versions as [for example described here](https://community.developer.atlassian.com/t/ace-and-aui-7-and-8/33179). to use jquery just manually embed it as well.\n\n<script src=\"https://connect-cdn.atl-paas.net/all.js\" type=\"text/javascript\"></script>\n\n<script src=\"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js\" type=\"…",
"name": "",
"is_accepted": true
}
] |
aaf2d0850fcc764071381ff56b6a3a53 | hi,
after upgrading jira from version 8.13.0 to 8.13.1 when i access the gadget settings, the save and cancel buttons do not appear.
no error appears in the browser console either.
jira 8.13.0 gadget configuration:
[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/8/e/8e051bdc11b0a33c1c074bfc3cad6ac479d225d5.png "image")
jira 8.13.1 gadget configuration:
[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/a/6/a67cecc6cecc07671481e29cd72093fdb2ddf8d2.png "image")
that could be happening?
t… | lost configuration gagdet save/cancel button after update to jira 8.13.1 | atlassian.com | 2021.43 | [
{
"text": "hi,\n\nno, it is uploaded manually.\n\ni have added the following in the all\\_all.xml file and button text already appear\n\n<msg name=\"gadget.common.configure\">configure</msg>\n\n<msg name=\"gadget.common.save\">save</msg>\n\n<msg name=\"gadget.common.cancel\">cancel</msg>\n\nis it correct to do this? or is there any…",
"name": "",
"is_accepted": true
}
] |
18bc747b8f562f7637fd5ee181468209 | hi! i’m new here, but already had made some plugin macros for my business confluence server instance. but now, i’m running into jira plugin development and found my first trouble.
reading this tutorial ([[https://developer.atlassian.com/server/jira/platform/creating-a-jira-issue-crud-servlet-and-iss…](https://developer.atlassian.com/server/jira/platform/creating-a-jira-issue-crud-servlet-and-issue-search/) | creating a jira issue crud servlet and issue search | atlassian.com | 2021.17 | [
{
"text": "i’ve found that my atlassian-sdk repository was cleaned out. after reinstalling, everything back to normal. sorry for the useless post.",
"name": "",
"is_accepted": true
}
] |
b54209773f12289eca10790db039f8d0 | hi.
i create just another extention of cascadingselectcftype. in edit.vm and view.vm place only text “waagh!!!”. setup plugin in jira and place cf to proper screens. configure field options. there are no other field specific options maked.
html code of field doesn’t appear in html code of screen. … | customfield not rendered on screen | atlassian.com | 2020.05 | [
{
"text": "this is was my fail. i make syntax error in name tag.",
"name": "",
"is_accepted": true
}
] |
3104f64e53f0f89642af847e81c8eccf | hi developers, i have a macro with rich text body in which i inserted an image but it’s not shown in confluence page !!
i got html code like this :
<p><ac:image ac:height="250"><ri:attachment ri:filename="ss.png" ri:version-at-save="1"></ri:attachment></ac:image></p>
any help plz and thnx.
regar… | can not be shown as a part of my macro body! | atlassian.com | 2021.17 | [
{
"text": "then you know the reason. output html and you should be fine.",
"name": "",
"is_accepted": true
}
] |
748c1718340ed9b1008179dc9e92a74e | hi geeks!
this should be a straightforward question - i need to add a new page to jira that is accessible from a menu item. (yes, i have already added a menu item).
this new page is going to display content from an external application (iframe i guess).
thanks! | how to add a new page to jira? | atlassian.com | 2021.17 | [
{
"text": "if you’re talking server and you want to do it through an iframe - the easiest way will be to go with a servlet module and then have the html generated contain the iframe tag. take a look at <https://developer.atlassian.com/server/jira/platform/servlet/>",
"name": "",
"is_accepted": true
}
] |
9469a2f45f19370d098f431b843bc02e | hi all
i had a good solution to compare two dates in a confluence user macro.
i checked both dates with the millisecond timestamp.
#set( $moddatetimemillis = $childversion.getlastmodificationdate().gettime() )
#if( $moddatetimemillis > $startdate.timeinmillis)
#set( $dummy = $allversions.add($chi… | velocity compare 2 dates | atlassian.com | 2021.21 | [
{
"text": "thanks a lot for all the suppot!\n\nis there somewhere i can watch the ticket?\n\nfirst, i have to explain where the startdate comes from:\n\nthe startdate comes from a parameter in the user macro, which gives a german date in a string format.\n\n#set( $startdate = $action.dateformatter.getcalendar())\n\n## pa…",
"name": "",
"is_accepted": true
}
] |
d959db07e304909d7d039ca5799e22cc | hi all,
maybe this is documented somewhere but i couldn’t anything. i am looking for a way to render a panel on the issue view page that behaves differently based on the jira project type. fetching the project via rest api gets me something like "projecttypekey": "service\_desk" but preferably i don… | distinguish jira service desk and other jira project types | atlassian.com | 2021.17 | [
{
"text": "we provide a [project\\_type condition](https://developer.atlassian.com/static/connect/docs/latest/concepts/conditions.html#project-type), which you can use as an [“inline condition” context parameter](https://developer.atlassian.com/static/connect/docs/latest/concepts/context-parameters.html#inline-conditions).\n\ncheers,\n\ndave",
"name": "",
"is_accepted": true
}
] |
149f8333b1cb1c4fef9668b89d3aff5f | hi there!
i’m working on a new app, but i’m struggling very hard with the fetch api.
i’m trying to upload a png file to a confluence page using the [put rest api endpoint](https://developer.atlassian.com/cloud/confluence/rest/api-group-content---attachments/#api-api-content-id-child-attachment-put).
so far, i’ve been hitting multiple roadblocks.
1. problem with wrapped api call
when i wrote my first piece of code using no… | fetch api can't be used for uploading confluence files | atlassian.com | 2021.31 | [
{
"text": "hi [@tommoors](/u/tommoors),\n\nit is possible to specify the content-type since a few days. if you now create the form-data-payload manually, you can upload attachments in confuence.\n\nwith this source code we are able to upload attachments.\n\nsomeaction.js\n\nimport { v4 as uuidv4 } from 'uuid';\n\nimport { requestconflu…",
"name": "",
"is_accepted": true
}
] |
d6b72dde5c7ca63f91965ed1ec76a004 | hi.
i am currently trying to execute some code if someone on rapid board drags and drops an issue to another column.
is there a way in adding a event listener, in order to know which issue has been moved?
during research i only found mentions regarding
jira.events.new\_content\_added
is there any… | is there a javascript event for drag and drop on boards | atlassian.com | 2020.40 | [
{
"text": "the dnd is based on jquery ui sortable: <https://api.jqueryui.com/sortable/>\n\nso technically theres ways to add those event listeners. see “events” section in <https://api.jqueryui.com/sortable/#sortable1> .\n\nbut keep in mind that it is not an official jira api. jira can change the dnd library/implement…",
"name": "",
"is_accepted": true
}
] |
37016d00f82b59ac4164a2a797fb7b6b | here is what i have tried:
<dependency>
<groupid>com.atlassian.activeobjects</groupid>
<artifactid>activeobjects-plugin</artifactid>
<version>3.0.0</version>
<scope>provided</scope>
</dependency>
every other dependency works just fine.
here is the e… | maven can't resolve active object:plugin dependency for confluence plugin | atlassian.com | 2021.17 | [
{
"text": "the problem was the proxy, i just switched to another network and this solved the problem.",
"name": "",
"is_accepted": true
}
] |
bbdd85e94d222f93f3bf6e52a4c51ea3 | is it possible for the forge app to not send notifications when editing an issue?
i know the rest api call has the notifyusers parameter. i have tried to used this but when making the request asapp() i get a 403 error. this means my add on is does not have enough privileges. how can i elevate its … | is it possible to supress notifications when forge app makes changes | atlassian.com | 2021.31 | [
{
"text": "yes, it is possible. to use that query param, the user making the request needs appropriate permissions, as stated in the [documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issues/#api-rest-api-2-issue-issueidorkey-put):\n\nto disable the notification, administer jira or administer project permissions are required. if the user doesn’t have the necessary permission the request is ign…",
"name": "",
"is_accepted": true
}
] |
42917ccadf7226d938fd3895fcb39324 | when a user modifies one of our objects in confluence (our plugin manages requirements), we update the link titles in jira (implemented as remote issue links). so we have a queue of messages in confluence, and a job that sends the queue to jira every 2 minutes.
should i send the messages to jira u… | oauth with impersonation for back-end jobs: how to authenticate, should i use threadlocal.setuser(...)? | atlassian.com | 2021.17 | [
{
"text": "actually, authenticateduserthreadlocal.set(a pre-determined user) works to impersonate another user. so:\n\nwe will ask customers to save a user in their options,\n\nwe will always perform modifications in jira using this user,\n\nwe will add a field in our json, so changes will be attributed in the ui to …",
"name": "",
"is_accepted": true
}
] |
38567c2b3cb975c81f3f86a92eba56df | hi all, i’m noticing a strange behavior when using my macro on a confluence server.
the macro browser of my macro is supposed to have a textarea that allows multiple lines of input, as such:
[[macrobrowser]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/e/0/e021898cca8012045cf59cad2159159eb2e7b7c5.png "macrobrowser")
it behaves correctly only when there is another instance of the same macro already in the … | strange macro behavior | atlassian.com | 2021.39 | [
{
"text": "solved: added <context>atl.general</context> and <context>atl.admin</context> to my atlassian-plugin.xml",
"name": "",
"is_accepted": true
}
] |
d110d05f96f6c1c320e2ba93751ed381 | hi, is it just me, or did atlassian remove the install count from the marketplace recently. the apps are now showing only the number of reviews?
did they say why that change was made? | what happened to addon install count on marketplace | atlassian.com | 2020.16 | [
{
"text": "hi chris,\n\nyou can find more info here, it’s following the marketplace outage\n\n<https://community.developer.atlassian.com/t/important-installation-count-being-unavailable-on-marketplace/36403/16>\n\ncheers,\n\nyves",
"name": "",
"is_accepted": true
}
] |
9f9419c9d98a988a589d739023d05a27 | i’m building a confluence space page app using forge and custom-ui. i’m trying to get product context, so that i can fetch accountid, spacekey, and installcontext id to identify the user and where the app is installed to customize the app logic.
i’ve tried steps from: [https://developer.atlassian.co…](https://developer.atlassian.com/platform/forge/app-context-security/) | unable to get product context in custom ui app | atlassian.com | 2021.31 | [
{
"text": "hi [@karunakarg](/u/karunakarg) ,\n\ni think you’re getting mixed up between custom ui and ui kit. the code you’ve shared, including the useproductcontext() call looks like ui kit code which is designed to run with a forge function (backend) rather than in the browser where custom ui runs.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
146404405440dc8d97a098261e225624 | i want to wrap my plugin into iframe (just like it works in jira cloud) so my code will not interfere with other plugins.
so i have jira 7.13 and something like this in atlassian-plugin.xml:
<web-resource key="plugin-app-resources">
<resource type="download" name="ap-polyfill.js" location="… | how to load json/js/other data resource from plugin with javascript? | atlassian.com | 2020.05 | [
{
"text": "i need to load files inside iframe. not outside=)\n\nanyway i found solution with get /rest/webresources/1.0/resources?r={pluginid}:jiraserverplugin-app-resources\n\nit’s private rest-point but it’s working.",
"name": "",
"is_accepted": true
}
] |
2d9e66bbc64e88a67325b2588f5c088d | the [documentation](https://developer.atlassian.com/cloud/confluence/jsapi/confluence/) on savemacro accepts a macrobody parameter that suggests the macrobody will be updated if it is provided.
this does not work as expected and calling savemacro with a macrobody does not actually update the body.
example code
ap.confluence.savemacro({
version: 1,
name: 'te… | confluence.savemacro does not save macro body | atlassian.com | 2020.34 | [
{
"text": "hi [@joeyl](/u/joeyl),\n\ni had declared my macro body type as plain-text. when i change it to rich-text, i see the same behaviour as you - namely that the body appears empty, but the console shows it is<p />. do you see any change of behaviour if you change your macro type to plain-text?\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
08d1917e8d8a66ccbe181873bf6d5bfd | i am creating an atlassian connect with webpanel module. i would like to do the below things, is it possible? i attached the sequence diagram.
use story:
users use oauth token which is generated by my service, to communicate with my service.
if one user has gotten the token already, other users d… | what is the best practice to store 3rd party token using atlassian connect? | atlassian.com | 2021.17 | [
{
"text": "i think that the real question is:\n\nif a user of that tenant got their hands directly on the token, would that be a security issue for your app?\n\nif a user modified the value for the token, maybe setting it to some other token, would that be a security issue for your app?\n\nif the answer is no to bot…",
"name": "",
"is_accepted": true
}
] |
065525e31fc347001cd3188177dc9688 | trying to access info about the current user via ui kit but i keep getting { code: 401, message: 'unauthorized; scope does not match' }
i assume i lack a permission but would expect read:confluence-user to be the right one.
from my manifest:
permissions:
scopes:
- 'storage:app'
- 'read… | scope does not match | atlassian.com | 2021.31 | [
{
"text": "some questions / thoughts:\n\nare you writing this app for jira or for confluence?\n\nthe get current user api that you are using is for jira: <https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-myself/#api-rest-api-3-myself-get> so a scope called confluence-user would not affect it. re…",
"name": "",
"is_accepted": true
}
] |
64aed29bc74fbcc75ca852617dcf57f2 | we are trying the cloud admin api, specifically the get users in an organization rest api to get the full list of users in an organization.
but when we call the api, we get an empty list of users, even though we have many users.
{
"data": [],
"links": {
"self": "https://api.atlassi… | organisation rest api: get users returns empty list | atlassian.com | 2021.39 | [
{
"text": "hey, the get users in organization rest api returns only the managed users with verified domains",
"name": "",
"is_accepted": true
}
] |
4359fa5f81d7860e962098a53af89d77 | it’s broken for typescript consumers who don’t use skiplibcheck . consumers shouldn’t have to enable this flag in order to use this library.
please see [here](https://stash.adaptavist.com/projects/sr/repos/atlaskit-form-repro/browse) a dead minimal repro. | @atlaskit/form 7.x included typings are broken | atlassian.com | 2020.16 | [
{
"text": "hi sam – my sincere apologies for the delayed response to your message, and thanks for providing a repo with an example of the issue. i’ve created a ticket to track the typing error, and we’ve added it to our backlog.",
"name": "",
"is_accepted": true
}
] |
a8fda1147cad492c299d6aba4c014dee | hello guys,
at the moment, we’re using the search call of the rest api to get the issues for a jql and all its data (all fields and the changelog too in some cases).
at the atlas camp, [@raimonds.simanovskis](/u/raimonds.simanovskis) from eazybi told us in his talk that we can try the jira expressions rest api to get issue … | jira expression rest api to get all issue data | atlassian.com | 2019.43 | [
{
"text": "hi, [@alvaro.aranda](/u/alvaro.aranda), \nthe reason why in the jira expressions api you can fetch 10 times more issues is specifically that you need to explicitly say which fields you want returned. this way we can be sure your request won’t generate too much data and won’t take too long. \nhence, you can’t say “give me…",
"name": "",
"is_accepted": true
}
] |
6bcdb43abe0e4226cff7c88cacf02524 | hi, i’m starting to see quite a few occurrences of the following in customers issue data:
"customfield\_11005":{
"hasepiclinkfielddependency":false,
"showfield":false,
"noneditablereason":{
"reason":"plugin\_license\_error",… | portfolio not licensed error | atlassian.com | 2021.17 | [
{
"text": "i’ve noticed portfolio is installed on every cloud instance, it’s just unlicensed. the parent link custom field is also always present.\n\ni guess this is because it’s a p2 add-on.",
"name": "",
"is_accepted": true
}
] |
8c68524358e3dc676c6d91ea8cb10bf3 | hey guys o/
i have a small question regarding jwt and forge. we are currently developing an app, but with atlassian connect. during the development process we found out that we need jwt to fetch information from the endpoint
/wiki/rest/api/user/email
which probably means, that we need a server ba… | get information from the user email endpoint (jwt) | atlassian.com | 2021.04 | [
{
"text": "hi [@martin.gypser](/u/martin.gypser),\n\ncurrently it’s not possible to invoke the /wiki/rest/api/user/email endpoint from a forge app. this is because forge and connect use differently underlying authentication mechanisms (connect uses jwt and forge uses oauth 2.0) and some rest resources in our products don’t support …",
"name": "",
"is_accepted": true
}
] |
3de86448c56e4ae10ec19b4759e1a133 | hi,
atlassian introduced the [live macros at summit barcelona - september 2018](https://www.youtube.com/watch?v=zhmfbcwcyzs&feature=youtu.be&t=363) and in a [blogpost](https://confluence.atlassian.com/confcloud/confluence-editing-improvements-945107733.html#confluenceeditingimprovements-livemacros).
however, i didn’t find any documentation of the descriptor for live macros. i’ve looked at:
<https://developer.atlassian.com/cloud/confluence/modules/static-content-macro/>
[https://developer.atlassian.…](https://developer.atlassian.com/cloud/confluence/modules/dynamic-content-macro/) | where is confluence's "live macro" documented? | atlassian.com | 2021.17 | [
{
"text": "hi,\n\nthere are several issues that affect third parties macros still pending, e.g.\n\n<https://jira.atlassian.com/browse/confcloud-62780>\n<https://jira.atlassian.com/browse/confcloud-62749>\n\natlassian is planning to fix these issues before the rollout to pages otherwise many apps will break.\n\ncheers,\n\nsa…",
"name": "",
"is_accepted": true
}
] |
f8552ae85a57c4078db5044fe9f3ce62 | i am attempting to render user information, including the avatar of the user (if available). whilst i can get the profilepicture information from the user json, it does not include the actual instance information.
i have seen [how to retrieve baseurl for jira](https://community.developer.atlassian.com/t/how-to-retrieve-the-actual-jira-instance-i-am-in/43935/5) but cannot rely on the requestjira fetch… | forge confluence customui baseurl (or alternative) | atlassian.com | 2021.39 | [
{
"text": "solution\n\nthe provided endpoints either don’t provide the absolute url, or when used alongside the baseurl get joined with 2 /wiki directories. seems like a poor design overlook .\n\nthe workaround i have used is as follows:\n\nmanifest file\n\nexternal:\n\nimages:\n\n- '*.atlassian.net'\n\n- '*.…",
"name": "",
"is_accepted": true
}
] |
3979af38f68da98a783619cd1e463f10 | i am working on a plugin that helps embedding images into a page. when the image cannot be found, i currently just render some html code like “ [error]: could not find diagram. ” inside the execute() method of my macro.
it would be much nicer to display this in form of a warning, tip or error macro… | how to include another macro into my plugin code? | atlassian.com | 2021.39 | [
{
"text": "there are more than likely a few different ways you can do it.\n\nyou can create the storage format version of the info, error etc. and use something like: [xhtmlcontent (atlassian confluence 5.9.7 api)](https://docs.atlassian.com/atlassian-confluence/5.9.7/com/atlassian/confluence/xhtml/api/xhtmlcontent.html#convertstoragetoview-java.lang.string-com.atlassian.confluence.content.render.xhtml.conversioncontext-) to convert the storage format (in your backend code) into html and return that. this is definitely m…",
"name": "",
"is_accepted": true
}
] |
61ef48ea311d3ff123eab74a3deb9cc2 | hi all.
i’ve developed a jira cloud app and would like to allow users to enable it for a specific project within their account. there doesn’t seem to be a way for them to do this via the manage apps interface, but has anyone found an elegant solution?
obviously i could load my app conditionally us… | enabling a jira cloud app for a single project | atlassian.com | 2020.16 | [
{
"text": "we do exactly what [@david.pinn](/u/david.pinn) said in our app.\n\nthe switch/toggle saves the status to project “entity properties”. next we use the entity property in atlassian-connect.json “condition” to show or hide the page/panel/content/glance.",
"name": "",
"is_accepted": true
}
] |
f14f8687cffdfc4183576de65a9ba7eb | hi,
is it possible to force a modal dialog to appear as a result of a workflow post function, or is use of a webhook a better or necessary choice?
i’ve got a dialogmodule rendering on click of a webitem.
alternatively, i can get iframe content from a workflow post function request, but the iframe… | render dialog from workflow post function? | atlassian.com | 2021.17 | [
{
"text": "here’s how i resolved this question. hopefully this will help someone, and better yet, if anyone sees anyway to improve the logic, that would be grand.\n\ni used [atlassian-connect-express](https://bitbucket.org/atlassian/atlassian-connect-express) and its built-in support for express-hbs templates, and i implemented the following.\n\ni configured modules in atla…",
"name": "",
"is_accepted": true
}
] |
a8116f82d7fb2c35891db85603798db5 | hello,
i am developing an oauth 2.0 3lo app.
when trying to post to [https://api.atlassian.com/ex/jira/{cloudid}/rest/api/3/issue](https://api.atlassian.com/ex/jira/%7bcloudid%7d/rest/api/3/issue) i get the error “oauth 2.0 is not enabled for this method”
the documentation for this endpoint shows the required oauth scope of “write:jira-work”, meaning the endpoint… | post /rest/api/3/issue | oauth 2.0 is not enabled for this method | atlassian.com | 2021.39 | [
{
"text": "cross-posting from [solved: post /rest/api/3/issue | oauth 2.0 is not enabled ...](https://community.atlassian.com/t5/jira-software-questions/post-rest-api-3-issue-oauth-2-0-is-not-enabled-for-this-method/qaq-p/1760866?utm_source=atlcomm&utm_medium=email&utm_campaign=mentions_reply&utm_content=topic#u1767518)\n\ni was trying to get instead of post to the /rest/api/3/issue endpoint. correcting the method resulted in a successful api call.\n\nwhat threw me off was that the message returned by the api was “oauth 2.0 is not enabled…",
"name": "",
"is_accepted": true
}
] |
325b5e5cb0c51747c39206fe555014b3 | hi experts,
i am trying to get project list using cloud rest api in express connect app. i have jwt token how can use this to get project list.
kindly help me with this.
var options = {
method: "get",
url: "https://xxxxxx.atlassian.net/rest/api/3/project",
headers: {
ac… | how to call cloud rest api using express connect using jwt token | atlassian.com | 2021.39 | [
{
"text": "i found a solution. in express, i used \"httpclient \" which is take care jwt authenticate automatically.\n\n// working for project\n\nvar httpclient = addon.httpclient(req);\n\nhttpclient\n\n.get(\"rest/api/3/project\", function(err, res, body) {\n\nconsole.log(body);\n\nres.json(bod…",
"name": "",
"is_accepted": true
}
] |
0dc92b464a435f6e394b2800867e3a22 | i am creating a sapce admin page following:
<https://developer.atlassian.com/server/confluence/writing-a-space-admin-screen/#create-a-space-tools-screen-in-confluence-7-4-and-earlier>
everything works but i was wondering how to change the link name “apps” option in the space tools lists and top bar. … | how to change title of "apps" in space tools? | atlassian.com | 2020.34 | [
{
"text": "the name is defined by confluence and i don‘t think you can change it directly. as all apps which have space settings are configurable under that link i don‘t understand why you would like to change it.\n\nkind regards andreas",
"name": "",
"is_accepted": true
}
] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.