id
stringlengths 32
32
| text
stringlengths 0
895k
| name
stringlengths 0
33k
| domain
stringlengths 5
44
| bucket
stringclasses 19
values | answers
list |
---|---|---|---|---|---|
512bf240950ef0ebc168a224857848a6 | hi :slight\_smile:
i have a problem, and i’m upset because of that.
i hope that you will help me.
ok, i’m creating blueprint. using javascript and xmlhttp request i send a rest request to my rest controller. in rest controller i call method from services. and here is the problem. i need to have sp… | get space key - how to get it | atlassian.com | 2021.17 | [
{
"text": "i’ve found solution!\n\nin javascript but it’s enough for me.\n\nconfluence.blueprint.dialog.getspacekey()",
"name": "",
"is_accepted": true
}
] |
29d55018aea88720f653ecde7d0b5a72 | am trying to store and retrieve stored data via forge storage api but it throws error below
<https://developer.atlassian.com/platform/forge/runtime-reference/storage-api/>
there was an error invoking the function - cannot read property 'get' of undefined
typeerror: cannot read property 'get' of u… | issues with storing and getting data from forge storage api | atlassian.com | 2021.39 | [
{
"text": "i think there are a few problems here.\n\nyou are setting the same storage key twice\n\nyou need an await on storage operations\n\nyou don’t access storage via api.asuser()\n\nnot sure what .json() is for. if you save an object, it will read as an object so there is no need to try parse it.\n\nsee updated code…",
"name": "",
"is_accepted": true
}
] |
9651633ec129b9b45b5a0baee3d7f16c | hello,
are there any recommendations on how to reference confluence user/page from an ao entity? i’m creating a plugin and i need to maintain a custom mapping from a user to pages. i found that i could use aos to store my custom data, but now the question is to how reference user and page. should i… | referencing confluence entities from custom active object entities | atlassian.com | 2020.05 | [
{
"text": "you store the user key or page id’s yourself.",
"name": "",
"is_accepted": true
}
] |
1c7a7191f59f77934c6af3510cc1ca80 | hi,
i’ve found that when creating a page via the rest api the page displays correctly, however when pressing the edit button it shows blank content
this is the request i am making
post("/wiki/rest/api/content").header("content-type", "application/json").body([
title: "${sprintenddate.format('… | editor page is blank when creating page via rest api | atlassian.com | 2021.39 | [
{
"text": "[@bendavies](/u/bendavies),\n\nthanks, undocumented parts of the api are tricky but that was enough to get a plain http request. i get a 200 and my content “survives” into editing.\n\n[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/1/2/12d7912ad53ed175b865d674c90491a169a2d010.png \"image\")\n\nhere’s the request that i made:\n\n{\n\n\"title\": \"2021-06-01 retrospective\",\n\n\"type\": \"page\",\n\n\"space\": {\n\n\"key\": …",
"name": "",
"is_accepted": true
}
] |
3508641bdf7246881aac1b9ce54b1fc8 | i’m requesting members via /1/members/:id and keep getting rate limited even if i throttle to less than 100 requests per 10 seconds. | i keep getting 429 rate limit errors. what are trello’s rate limits? | atlassian.com | 2021.17 | [
{
"text": "trello has multiple types of rate limits. there are two things you’ll want to do to understand why you are receiving a 429.\n\nthe first is to introspect the response object you’re receiving from trello when you git a 429. it should be a json object that looks like the following:\n\n{\n\n\"error\": \"api\\_to…",
"name": "",
"is_accepted": true
}
] |
0926d00852384b071ec7fadf5c59eac6 | hello, community,
trying to open dialog2 from dialog1 using javascript atlassian connect add-on for jira cloud.
web-items in atlassian-connect.json:
"webitems": [
{
"name": { "value": "dialog 1" },
"url": "/dialog1",
"key": "dial… | open dialog in jira cloud using javascript | atlassian.com | 2021.17 | [
{
"text": "the fact that you can open a web-item as a dialog link in confluence is lucky and a side-effect that was not intended to work. the correct way to declare a dialog that can be opened via javascript is via the [dialog module](https://developer.atlassian.com/cloud/jira/platform/modules/dialog/) in your descriptor.\n\nplease try the same javascript but pointing to a key from…",
"name": "",
"is_accepted": true
}
] |
b5683ae2bcf8e4f80d057d0bd71d6d73 | i am very new to plugin development , getting null pointer exception when i am trying to create issue type using plugin
following is my servelet code
import java.io.ioexception;
import java.io.printwriter;
import javax.servlet.servletexception;
import javax.servlet.http.httpservlet;
import jav… | not able to create issue type using plugin | atlassian.com | 2021.17 | [
{
"text": "following simple steps will get avatar ids\n\ngo to issue type select edit option and try to change the image\n\nselect the image and right click and select the option copy image address\n\nand you get url like this\n\n[http://din20000106:2990/jira/secure/viewavatar?size=xsmall&avatarid=10315&avatartype=i…](http://din20000106:2990/jira/secure/viewavatar?size=xsmall&avatarid=10315&avatartype=issuetype)",
"name": "",
"is_accepted": true
}
] |
494f9294efb420a69ae0f8a182b806e3 | i have an app that stores data in an issue property. when you read an issue property and get a 404 response there are two reasons for that. from the documentation:
returned if the issue with given key or id does not exist, if the property with given key is not found, or if the user does not have p… | issue property 404 response too general | atlassian.com | 2021.17 | [
{
"text": "hi, [@tbinna](/u/tbinna),\n\ni know it’s a workaround, but if your property name is distinctive enough, you can search for its occurrence in the error message and if:\n\nthe message contains the property name -> the property was not found\n\nit doesn’t -> the issue was not found\n\nthis relies on the fact that in all la…",
"name": "",
"is_accepted": true
}
] |
ad569386769b0985e44b3d55279fb4f7 | hi,
we have a customer that have a staging environment where all our app-related db tables are either empty or corrupt/null values. they state that it’s been like this for 6 months so it’s not really possible to track down the root cause, but we suspect something went wrong when they migrated over … | completely uninstalling p2 app from jira | atlassian.com | 2021.21 | [
{
"text": "hi,\n\nthere are few places to reset:\n\nlast upgradetask nr:\n\n`select * from propertystring where id in ( select id from propertyentry where property\\_key like ‘%plugin\\_key%’);\n\nlast activeobjectsupgradetask:\n\n`select * from propertystring where id in ( select id from propertyentry where property\\_key li…",
"name": "",
"is_accepted": true
}
] |
5740088275f139b9a3a2f86504429f73 | since some time access tokens for private listings have stopped working as expected.
we have staging instance where we test our add-on. add-on descriptor is hosted from staging hosting on heroku. even when access token is present (on manage add-ons page) our add-on behaves like it would be not lice… | paid update available for private listings | atlassian.com | 2021.17 | [
{
"text": "hi [@maciej.dudziak](/u/maciej.dudziak), if you are wanting to fix the token problem go to this jira issue: <https://ecosystem.atlassian.net/browse/ac-2357> and give them a list of your servers. they will apply a patch to make the tokens work\n\nthanks\n\npaul",
"name": "",
"is_accepted": true
}
] |
b6f9583375bb3df4ec720624a6f9d3b0 | hello,
is it possible to place a panel plugin module on the view issue page that is below or above the
description field?
i have seen some discussion about this topic but have not found a definitive answer. the view issue page locations website indicates that one location is alt.jira.view.issue.r… | view issue page locations | atlassian.com | 2021.17 | [
{
"text": "hi [@prfurey](/u/prfurey),\n\ni’m going to admit that our documentation for finding locations where you can put web panels is something to be desired. i’ve recently noticed how impossible it is to find the location name you’re looking for. i think at atlassian we’ve come to depend a little too much on [@daniel](/u/daniel)’s [w…](https://marketplace.atlassian.com/plugins/com.wittified.webfragment-finder/cloud/overview)",
"name": "",
"is_accepted": true
}
] |
ff927991fe5def8d698e549e842752be | hi,
i have read the design guidelines for the new issue view. in the guidelines, “content” are supposed to be the primary way for interacting with the app and the glance is typically for secondary information or rare interactions. in my current app, i offer customers the possibility to display the … | issue content vs issue glance - ux guidance | atlassian.com | 2021.17 | [
{
"text": "hey [@yvesriel](/u/yvesriel), great question!\n\nthe design guidelines are there to provide some more details and direction on how we view the purpose of each area within the issue detail view. one of our goals is to make each issue detail view extension point about their semantic meaning rather than a specific loca…",
"name": "",
"is_accepted": true
}
] |
9fe7f83266bd138003b2e69010f6d5ed | i have been developing connect addons for a while, but am trying out atlassian-connect-express for the first time. i am unable to install the addon when using postgres as my store and sequelize for my adapter. the installation times out, and i receive no feedback through the console.
my store is de… | using atlassian-connect-express with postgres | atlassian.com | 2021.17 | [
{
"text": "i finally solved my own problem. the issue was the connection url. the correct format would be\n\npostgres://admin:[email protected]/dbname",
"name": "",
"is_accepted": true
}
] |
302e8534de03de2543b719e12b237d82 | hi, i’m having problems right now with this endpoint:
/rest/api/2/user/assignable/search?project=cdv
instead of returning just the users that are assignable to that project, it is returning all the users available.
also, this was not happening until last week, it was working right so i don’t if… | assinable users by project returns all users | atlassian.com | 2021.39 | [
{
"text": "your post is marked as jira-server,so you should be able to know whether jira was upgraded. if it was not upgraded there is no chance to change rest api. is it possible that permission scheme for project was changed or reconfigured?",
"name": "",
"is_accepted": true
}
] |
420ea98fcd5ddd3d781c120f91b6bbb3 | hi there,
we are trying to use issue.set/getproperty and looking for some examples of usage. our first attempts are returning error codes. does anybody use the field please?
we found the properties field interesting as we need to store some issue specific information. | cloud.api - issue set/getproperty | atlassian.com | 2021.17 | [
{
"text": "sorted based on :\n\n<https://developer.atlassian.com/static/connect/docs/latest/modules/jira/entity-property.html>\n\nand some experiments.",
"name": "",
"is_accepted": true
}
] |
f6bd950644db645018920fec5f217a39 | hello.
i developed a report for the jira cloud platform.
published it via nginx. nginx configured as https (ssl), for my domain there is an authorized and valid ssl certificate. when trying to add this application to jira, i get the error "an ssl error occurred when we tried to contact the app hos… | ssl error while deploy add-on | atlassian.com | 2019.47 | [
{
"text": "i find out the problem\n\nmy nginx was misconfigured.\n\nhere is correct way to configure [nginx](https://cheapsslsecurity.com/blog/install-ssl-certificate-nginx-http-server/)",
"name": "",
"is_accepted": true
}
] |
f3e7720d220580fa46e67ef6bd4cad7b | headline statement
jql supports querying issues out of the box, but there is often cases where more complex queries are required. being able to write jql functions through forge will help bring a new level flexibility to developers and teams.
example
a user wants to write some jql which checks fo… | forge support for custom jql functions | atlassian.com | 2021.31 | [
{
"text": "hi [@tomnoble](/u/tomnoble),\n\nthanks for this suggestion. i have created [frge-231](https://ecosystem.atlassian.net/browse/frge-231) for this.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
ca025f49e732f78c0c3ff133c6331838 | hai all,
i created one forge app and planned to publish this app in atlassian marketplace. before that i need to do self validation. i deployed the app for production and installed app in my atlassian site. after installing the app in my instance, i stored some data at app side. i uninstalled app f… | how to delete app data while uninstall forge app? | atlassian.com | 2021.39 | [
{
"text": "the data is automatically deleted after some period of time:\n\n[image][how do i delete all forge storage data for an instance](https://community.developer.atlassian.com/t/how-do-i-delete-all-forge-storage-data-for-an-instance/49980/2)\n\nwe wait a few weeks before clearing out the data after uninstall. its still within our 30 day privacy policy window but not so fast that if the customer regrets the uninst…",
"name": "",
"is_accepted": true
}
] |
06a82bda446a87b5bcb930a0c787af42 | i have noticed that “edit issue” rest endpoint accepts historymetadata which allows setting an actor and description.
is anyone aware if it can be used somehow to skip adding an entry to issue history?
some of the customers of our issue checklist app want to keep all the features that we deliver t… | is there a way to update an issue with rest call and do not generate an entry in issue history? | atlassian.com | 2020.10 | [
{
"text": "[image] jack:\n\nhow does this “additional” information should be visible in issue history?\n\nit’s not visible in the ui, but you can get it back via the rest api in changelogs, e.g. https://[instance].atlassian.net/rest/api/2/issue/[issuekey]?expand=changelog",
"name": "",
"is_accepted": true
}
] |
452dca2cd100d48d87d478980679c2c4 | what is the best front-end technology to use with atlassian connect framework? that needs responsive pages | what is the best front-end technology to use with atlassian connect framework? | atlassian.com | 2021.17 | [
{
"text": "hi [@prathyusha.gali](/u/prathyusha.gali)!\n\ni guess you should use react to embrace [atlaskit](https://atlaskit.atlassian.com/) or use whatever you want with compliance to [adg](https://atlassian.design/) otherwise",
"name": "",
"is_accepted": true
}
] |
a7d633cb05495e9e5f334a571c4200f0 | hi,
i would like to use plugin settings for data storage of my jira plugin. i have already used pluginsettingsfactory once in my bitbucket plugin last month. so i am familiar with it. however, when i try to use the same in jira plugin, it throws this error:
caused by: org.springframework.beans.fac… | pluginsettingsfactory throws error | atlassian.com | 2021.17 | [
{
"text": "maybe you need to add the @scanned annotation to your condition class",
"name": "",
"is_accepted": true
}
] |
2bc1476d85d23f441654a9d9a9cf7951 | i have a plugin that creates a screen and adds some fields to it. i dont have a problem with adding custom fields, those are displayed correctly, but i havent found a way to add a system field onto the screen, e.g. summary. i would like to use the new screen for creating a special new issue type, bu… | adding system field onto a screen through java api | atlassian.com | 2021.17 | [
{
"text": "in case anyone ever stumbles upon this, i managed to solve it by retrieving the summary field as an orderablefield.\n\norderablefield summaryfield = fieldmanager.getorderablefield(\"summary\");\n\ntab.addfieldscreenlayoutitem(summaryfield.getid());",
"name": "",
"is_accepted": true
}
] |
3e7c860f73727ddd17b8ec6f8dc1b047 | having just gone through the forge tutorial, i’m trying to play around and do some more advanced things.
one thing i’m trying to do is create pages in the same confluence space at the click of a button. however, my request never completes, at least as far as i can tell.
const createpage = async (s… | no logs for failed post | atlassian.com | 2020.50 | [
{
"text": "okay, after some careful tutelage from my betters on the finer points of async/await, i have it sorted.\n\nimport api from \"@forge/api\"\n\nimport forgeui, {button, fragment, macro, render, useproductcontext} from '@forge/ui'\n\nconst createpage = async (space) => {\n\nconsole.log(\"okay, let's try and crea…",
"name": "",
"is_accepted": true
}
] |
d6198f38265a0668b79a412eceb25e73 | hi, we did developed an add-on macro for confluence cloud using atlassian express connect.
the macro output content width did resize to the page width but now ,i guess since some days, the macro view doesn’t resize to the page width anymore.
how can we fix that issue ?
regards
tom
the atlassian… | ace - macro output content width doesn't fit to page width | atlassian.com | 2021.17 | [
{
"text": "i cloud solve this issue by myself based on this reported bug:\n\n<https://ecosystem.atlassian.net/browse/ce-194>\n\nchange \"outputtype\": \"inline\",\n\nto \"outputtype\": \"block\",",
"name": "",
"is_accepted": true
}
] |
cb14890bbf8e911379f49b934d5ebef4 | hi,
once i have a trello rest api user token (read & write) and can list the boards the user can access (either ones they own, or ones they have joined such as <https://trello.com/b/1jz6sorc/the-dev-board>), how can i determine what actions are permitted?
specifically for a board, how can i tell if … | determining what actions user is permitted using trello rest api | atlassian.com | 2019.47 | [
{
"text": "hi [@dmehers](/u/dmehers)!\n\nthis is a great question and something we don’t have a lot of documentation on right now. there isn’t a one-stop answer for this, unfortunately. piecing together the entire permissions picture requires checking out a few things.\n\na board member can always move cards, comment, add lists…",
"name": "",
"is_accepted": true
}
] |
8fcc1f55a3484eeef6109c2021c3c8c1 | hi, i want to know if it is possible for a jira cloud add-on to have a workflow condition (that can stop a workflow change). i have looked through the documentation and can’t find anything but i may just be blind (not the first time)
thanks
paul | workflow conditions | atlassian.com | 2021.17 | [
{
"text": "workflow conditions are now available: <https://developer.atlassian.com/cloud/jira/platform/modules/workflow-condition/>",
"name": "",
"is_accepted": true
}
] |
e5eed2cad6dac3c62f355c9ed748a141 | hello community!
i am here about macro plugin development.
i’ve been trying to render a macro inside another macro but nothing works for me so far.
i know in a usermacro i can just use what xml is written in the edito but when i try to use exactly that in a plugin .vm it doesn’t render.
so i tho… | add any component to macro plugin | atlassian.com | 2021.17 | [
{
"text": "found a workaround for my usecase",
"name": "",
"is_accepted": true
}
] |
b99e7dd6b1b12ba7338e92b9369155d7 | hi,
i’ve created static content macro which renders an image attachment of a page.
macro returns a response in confluence storage format, but i struggle with styling of <ac:image> element. according to [docs](https://confluence.atlassian.com/doc/confluence-storage-format-790796544.html#confluencestorageformat-images) one can use ac:style attribute on that element to include css style, but it does nothing - … | styling element | atlassian.com | 2021.17 | [
{
"text": "update: actually it could be easily solved by [undocumented](https://confluence.atlassian.com/confcloud/macros-724765157.html) macro style:\n\n<ac:structured-macro ac:name=\"style\" ac:schema-version=\"1\" ac:macro-id=\"868a65dc-a95f-412a-8abb-61e969908c30\">\n\n<ac:parameter ac:name=\"import\">https://link\\_to\\_your.css</ac:parameter>\n\n</ac:structured-macro>",
"name": "",
"is_accepted": true
}
] |
36a2b0fb66ef36bdb2bd0efbf418c126 | i have a plugin that provides gadgets, but i don’t know if it’s actually being used. is there any query that tells how many gadget instances there are and its plugin key?
thanks in advance, | how to find out if a gadget is being used | atlassian.com | 2021.17 | [
{
"text": "hi adolfo,\n\nif you know plugin key, it’s possible to find if plugin gadgets are installed on any dashboard using sql query connected to your db, e.g.:\n\nselect portalpage, gadget\\_xml, count(*) from portletconfiguration where gadget\\_xml like '%your-plugin-key%' group by portalpage, gadget\\_xml;\n\nthank…",
"name": "",
"is_accepted": true
}
] |
30effd526759a738ae004ef8fdd86a81 | hi,
a dialog is not popping up when it is added as a target type for web item under profile section.
[[image]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/e/8/e87e56f764b0ebf94add437b128dce84d865fa3d.png "image") , but the same is working fine on the apps menu. is this a known issue with confluence cloud?
thanks
lava | web item target type as dialog is not working from user profile menu | atlassian.com | 2021.10 | [
{
"text": "hi [@lavakumar.dukanam](/u/lavakumar.dukanam),\n\nthanks for the extra details. i reproduced this and have consequently created [confcloud-71621](https://jira.atlassian.com/browse/confcloud-71621).\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
987129476741d481c10bbe099c28f40c | i’m planning out a new app and one of the things that i’m running into is that i’ll be relying on forge’s storage api to query for objects. say i have 4 objects:
key-1: {}
key-2: {}
key-3:{}
key-4:{}
and i execute
await storage.query()
// filter the response to only keys that start with the st… | forge storage query - how is the order determined when it's returned | atlassian.com | 2021.31 | [
{
"text": "hi [@danielwester](/u/danielwester) ,\n\nfrom the [storage api](https://developer.atlassian.com/platform/forge/runtime-reference/storage-api-reference/) reference:\n\nkeys are lexicographically ordered - as such the [query api](https://developer.atlassian.com/platform/forge/runtime-reference/storage-api-query/) will return entities ordered by their key.\n\nthere’s no way to provide any alternate ordering.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
c20d1a6cdde0a428c516b549a58850f0 | i created a project template in my app. my projects shall use a specific set of configuration schemes which i wanted to create programmatically inside of my configure()-method in my addprojecthook class. i tried to create issuetypes, fieldscreens, fieldschreenschemes, workflows and a workflowscheme… | create project with project template times out | atlassian.com | 2019.47 | [
{
"text": "i create the entities on plugin-install. my hook then has ‘findorcreate’ methods. so in a best case scenario, it will find the entities like schemes or types i need. only if they have been deleted by an admin will i have to create them.\n\nthis approach has worked well for me.",
"name": "",
"is_accepted": true
}
] |
aeca1769d7ec12ff4551d4fa0ee74805 | hello,
where can i report a bug in quickreload?
there is something wrong with the automatic reload of resource files, because it doesn’t work as documented.
regards chris | where can i report a bug in quickreload | atlassian.com | 2021.17 | [
{
"text": "there’s the option to report bugs in the developer support service desk:\n\n<https://ecosystem.atlassian.net/servicedesk/customer/portal/14>",
"name": "",
"is_accepted": true
}
] |
1a7791f42ad9383bfe337532464c1728 | the convert content body api works as described in bob’s answer. in our case we were pulling content from the task search rest api which is returning storage format that the rest api can’t render. a follow-up thread for this issue can be found [here](https://community.developer.atlassian.com/t/confluence-task-search-rest-api-returns-mix-of-accountids-userkeys/36928).
hey there,
i’m trying to use the [convert conte…](https://developer.atlassian.com/cloud/confluence/rest/#api-api-contentbody-convert-to-post) | how to render user links via confluence's "convert content body" rest api? | atlassian.com | 2020.16 | [
{
"text": "it is working for us – can you send an example of the rest request you are making? ours is pretty simple, and is using user impersonation:\n\n{\n\nmethod: 'post',\n\nuri:\n\n'/contentbody/convert/view?spacekeycontext=' +\n\nencodeuricomponent(spacekey) +\n\n'&pageidcontext=' +\n\n…",
"name": "",
"is_accepted": true
}
] |
24d2941bc6d857a38a4efd8deff1548d | i am quite new to atlassian and jira. just started my learning process, while i was looking to create and deploy a simple add-on using atlassian-connect-express tool i was stuck at installing dependencies for the project. a whole bunch of errors showed and all the dependencies were not downloaded. i… | create add-on project | atlassian.com | 2021.17 | [
{
"text": "hi, [@manosree](/u/manosree). please attach errors that npm install gives you. error that you get when running node app is no quite helpful, because it’s consequences of installation.\n\ntry this:\n\ntry using [yarn](https://yarnpkg.com/lang/en/)\n\nif it doesn’t help -> try to reinstall atlassian-connect-express (make sure it’s global)\n\nif it doesn’t…",
"name": "",
"is_accepted": true
}
] |
afb4bba6711fc55d4dfec1bea0dc61b3 | hi,
i like to get the initial status of a jira workflow in java. i tried the following, but it does not return the initial status:
componentaccessor.getworkflowmanager().getworkflow(myissue).getlinkedstatusobjects().get(0);
i looked up the methods for jiraworkflow, however i could not find a suit… | how to get the initial status of a workflow | atlassian.com | 2021.17 | [
{
"text": "to solve the problem i did this:\n\nlist<changeitembean> changeitembeans = changehistorymanager.getchangeitemsforfield(issue, \"status\");\n\nstring init = changeitembeans.get(0).getfromstring();\n\nit’s not tested yet, but so far it seems to work. however if there is a better solution, feel free to share i…",
"name": "",
"is_accepted": true
}
] |
25e86baddca144e774d1848dd1bb4ddd | question as title. i have been searching through jira docs but found none. | are there any jira api calls to change the status of an issue from 'to do' to 'done'? | atlassian.com | 2021.39 | [
{
"text": "hi [@nhatnamnguyen](/u/nhatnamnguyen) ,\n\nin jira, you can’t directly change the status of an issue, you have to transition it to the desired status. which you can do programmatically using <https://developer.atlassian.com/cloud/jira/platform/rest/v2/api-group-issues/#api-rest-api-2-issue-issueidorkey-transitions-post>\n\nb…",
"name": "",
"is_accepted": true
}
] |
52f8ddd403ff16ea72cb8671176de96a | hi,
i’m trying to get bearer token for user, but when i send request signed with sharedsecret that i got on installation handshake i get this response:
{
"error": "unauthorized\_client",
"error\_description": "the authenticated client is not authorized to use this authorization grant type"
… | unauthorized\_client on bearer token request | atlassian.com | 2021.17 | [
{
"text": "i’ve looked through error message and remembered that i was changing atlassian-connect file today for some db testing… i noticed now that i deleted act\\_as\\_a\\_user scope and got in funny situation when i have oauthclientid value in data base, but my app is not authorized.\n\nnow i returned it and i got…",
"name": "",
"is_accepted": true
}
] |
367244e441eab827e5b3d88bdb325aef | hi all,
i am trying to get into confluence cloud plugin development. found this fairly new documentation:
<https://developer.atlassian.com/cloud/confluence/getting-started/>
i did all the steps, registered a dev cloud site, enabled plugin development mode there, created an api token, cloned the rep… | getting started step 3.2 npm start fails | atlassian.com | 2021.17 | [
{
"text": "apologies for the confusion, [@george](/u/george). what i meant before was, if you are using confluence as the product in credentials.json, a trailing /wiki will be automatically added to your provided host url; since it does not have a trailing wiki in the error message mentioned in the first comment, my concer…",
"name": "",
"is_accepted": true
}
] |
f4b7f4f6a6a7371a408ba9e8bce37dad | hi, in recent times i am noticing this error getting reported by sentry at times that ap is not defined or can’t read property request of undefined. how do one handle such scenario so far i assumed that ap as object will be always made available ? | ap is not defined at times | atlassian.com | 2020.40 | [
{
"text": "hi [@vishwajeetsingh](/u/vishwajeetsingh),\n\nthere is a known issue relating to the reliability with which we serve [all.js](https://connect-cdn.atl-paas.net/all.js). this is being discussed in [apps fail to load due to timeouts](https://community.developer.atlassian.com/t/apps-fail-to-load-due-to-timeouts/40506). there is also an open issue for the problem: <https://ecosystem.atlassian.net/browse/acjs-1134>.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
416905d107db7cafedebbe65689c8b5d | hi all,
i have a tool that posts html content to a new confluence page.
i make a post request to confluence using basic authentication. the call returns a 200 response but without any body/response json.
this has worked for me before. has anything changed recently?
i’ve looked up the documentat… | post call to the /rest/api/content doesnot return the json representation | atlassian.com | 2021.04 | [
{
"text": "hi peter,\n\nthank you for the response. it started working magically since last week.\n\ni’m not sure what fixed it :smiley:\n\ncheers\n\njyothi",
"name": "",
"is_accepted": true
}
] |
7e994dcfd23182c21e3818f9d90cf6a5 | i was creating an api integration to use the endpoint get /1/organizations/{id}/members but i kept getting only id, fullname and username, while the documentation <https://developer.atlassian.com/cloud/trello/rest/api-group-organizations/#api-organizations-id-members-get> was telling me that i was su… | missing documentation for trello api option "fields=all" | atlassian.com | 2021.39 | [
{
"text": "[image] octopus:\n\ni’m still not seeing member email , which i use to identify each member. i am reading that perhaps trello does not give you access to other people’s emails, is this correct? is there any way to authorize my app so that i can read this information?\n\ncorrect. there is a little c…",
"name": "",
"is_accepted": true
}
] |
c44df70e661b7d55c1d14cef017fdf7c | i am using an aui aui-table-sortable. it works except for sorting priorities.
looking at the code i can only find flags for:
aui-table-column-issue-key
aui-table-column-unsortable
is there a way to make this kind of table sort my priorities correctly instead of alphabetically? | jira aui sortable table cannot sort priority correctly | atlassian.com | 2021.17 | [
{
"text": "hi [@paul.korver](/u/paul.korver),\n\ni tested adding a custom parser to aui’s sortable table, and it works according to that plugin’s documentation.\n\nhere is an example table with priorities in it:\n\n<table id=\"custom-parser-example\" class=\"aui aui-table-sortable\">\n\n<thead>\n\n<tr>\n\n…",
"name": "",
"is_accepted": true
}
] |
410b191d749f5e33fd9a86b01211502f | hai all,
i am in a need to store data using @forge/api. but i can’t use it inside custom ui forge app. so i go with ui kit forge app. but it’s still in beta. if i develop a forge application using ui kit, can i publish it in atlassian marketplace? if any risks are there, kindly tell your suggestion… | how to use @forge/api library in forge custom ui app | atlassian.com | 2021.43 | [
{
"text": "hey [@suryaa](/u/suryaa),\n\nforge apps with ui kit can be published to marketplace.\n\nfor your use case with custom ui, asapp is only accessible from the backend resolvers. the following example would achieve what you need:\n\nin your resolver function:\n\nimport resolver from '@forge/resolver';\n\nimport api from '@forg…",
"name": "",
"is_accepted": true
}
] |
17fe03ff975233de1f2c25a346577692 | hi,
i tried but throws to nullpointerexeption.
pagecontextpagecontext = (pagecontext) rendercontext;
contententityobject contentobject = ((pagecontext) rendercontext)
.getentity();
string key = "ds";
key = pagecontext.getspacekey();
also this code below throw… | how to get space key on xhtmelmacro progmmaticaly? | atlassian.com | 2021.17 | [
{
"text": "i have no idea what you are trying to achieve with the provided source code. in case you want to get the space key as indicated in the title you can use conversioncontext.getentity as starting point. in case your macro is rendered on a page you can cast the returned contententityobject to a page and…",
"name": "",
"is_accepted": true
}
] |
39523ddc160c066b71b75d2d15e2eac9 | hello,
i’m having trouble creating a new issue in jira cloud using the rest api. i have an atlassian connect express app that is able to successfully execute get /rest/api/2/search and get /rest/api/2/project. however, post /rest/api/2/issue doesn’t work; i got a 403 forbidden response. the scope i… | create issue in jira cloud using rest api | atlassian.com | 2021.17 | [
{
"text": "the cause of this issue ended up being something pretty stupid - i was missing the credentials.json file. without this file, i was still able to use get rest methods in the api, but no post methods.",
"name": "",
"is_accepted": true
}
] |
68c9bc053a2c614f7ff8573387f47c92 | it seems like there are actions that can be navigated. i’m aware of only two types. actions and comments:
https://trello.com/c/<card id>/<card title>#action-<action id> and
...#comment-<comment-id>.
i just noticed that #action- and #comment- work interchangeably.
i’m using members/me/actions t… | how to get 'action url'? | atlassian.com | 2019.47 | [
{
"text": "you’re correct that #action- and #comment- can be used interchangeably. it appears that what we’re really looking for is whether there is a valid action id that is also an action id present on the card’s history.\n\nfrom my testing, all of the following actions created link-able action ids: moving car…",
"name": "",
"is_accepted": true
}
] |
dfe1899c2eeb0e4ce82c96cdf41067d0 | hi all,
i’m trying to update a jira 6 plugin to jira 7 using atlassian-spring-scanner, but i’m getting an unsatisfied dependency when i try to add the condition using userisprojectadmincondition:
caused by: org.springframework.beans.factory.unsatisfieddependencyexception: error creating bean with … | solved: action condition unsatisfied dependency | atlassian.com | 2021.17 | [
{
"text": "ok, i found that in the original plugin i was missing this important file:\n\nsrc/main/resources/meta-inf/spring/plugin-context.xml. :hushed:\n\nthe componentimporter class should be annotated with org.springframework.stereotype.component and contains the missing classes, so something like that should w…",
"name": "",
"is_accepted": true
}
] |
f42dcd5867203bc2252d61ca42e034bb | 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 | 2019.43 | [
{
"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
}
] |
baa8066a194ee03f59b44bd21802e8af | i’m trying to start a dev server for one of our addons using one of the later confluence versions. i have been experimenting back and forth, but whenever i go over version 6.3 it seems to be running into problems.
there are many mentions of jdbc and databases in the logs. has something changed with… | using atlas-run with later versions of confluence | atlassian.com | 2021.17 | [
{
"text": "it seems like i have managed to solve our server startup problems.\n\nreconditioning the pom with java 1.8, amps 6.3.6 and ao 1.2.0 seems to have done the trick. the server now starts and serves on localhost as expected.\n\nthanks!",
"name": "",
"is_accepted": true
}
] |
f8db0e265a57645697b2f34c9bc955de | hi,
there’s an awesome feature where a plugin can add icons in the page headers:
<https://developer.atlassian.com/static/connect/docs/beta/modules/confluence/content-byline-item.html>
<https://developer.atlassian.com/cloud/confluence/lesson-1-introduction-to-the-byline/>
but… is it only available in… | content byline for confluence server? | atlassian.com | 2021.17 | [
{
"text": "to avoid any feeling of abandon of this defunct community forum, i’ll at least answer this question myself, but i have to say the community is all downhill since the original [answer.atlassian.com](http://answer.atlassian.com) website was wrecked.\n\nit is possible to reproduce the behaviors of the content byline plugin module by a…",
"name": "",
"is_accepted": true
}
] |
01acf07652da713ffeeabdf1d3ff26e6 | i am building a forge application which receives a webtrigger from a 3rd-party app. this app requires validating the webtrigger with headers, a pre-given public key and a rawbody. so how can i get the rawbody from the body of this webtrigger? i’ve been looking everywhere and the answers are always u… | how to get req.rawbody from req.body in webtrigger forge | atlassian.com | 2021.39 | [
{
"text": "hey [@nhatnamnguyen](/u/nhatnamnguyen)\n\nin the example from the docs found here <https://developer.atlassian.com/platform/forge/events-reference/web-trigger/>, the body of a request is passed in as a raw string to your webtrigger function.\n\nconst mywebtrigger = ({ body }) => {\n\nconsole.log(body)\n\n}\n\nexpress js middlewa…",
"name": "",
"is_accepted": true
}
] |
06bcbda36d9482a06e6b2df5c180d098 | my plugin was designed to work with a version of jira that is becoming eol, so i want to update it to use the latest dependencies. i’d like it to work with as many earlier versions as possible (jira/confluence) that aren’t eol. how can i determine what version numbers to use?
the dependencies are:
… | need to determine minimum version of dependencies, for my plugin | atlassian.com | 2021.17 | [
{
"text": "go through the “preparing for xxxx” documents - there’s usually a platform component on them. in the above example - you’ll need to bump sal-api (3.x+), jira-api (7.2+) . i think there’s something in the back of my head about spring and things.\n\nbut read through (sorry about the multiple links - [dev…](http://developer.atlassian.com)",
"name": "",
"is_accepted": true
}
] |
e891088ce71c9c19a9364332d742c0b0 | hello !
is it possible to rename a forge application ? i’ve changed the app.name in the manifest.yml and re-deployed the app, but i can see any change in the developer console or on instance upm.
my deployed manifest:
modules:
jira:projectpage:
- key: rename-me-hello-world-project-page
… | renaming a forge application | atlassian.com | 2021.39 | [
{
"text": "hi [@clement\\_garin](/u/clement_garin), note that it is now possible to [rename your app via the developer console](https://community.developer.atlassian.com/t/update-forge-app-name-and-app-description/50578). hope this helps.",
"name": "",
"is_accepted": true
}
] |
278e3593cb140acef7f507fa4b574824 | this is the code,
string response1a = restclients.authenticatedas(hostuser).getforobject("/wiki/rest/api/space/", string.class); // sorry actually the base url is already present in hostuser so removed now.
the code above receives the error as: 403 forbidden
when trying with the code,
resttempla… | unable to get data from confluence api using atlassianhostrestclient in connect app | atlassian.com | 2021.17 | [
{
"text": "thanks, [@ramjeevan.tadi](/u/ramjeevan.tadi), the repo made it much easier to debug. i changed two things to make the code work:\n\nremove project\\_admin scope in your descriptor file. it is not a valid [confluence scope](https://developer.atlassian.com/cloud/confluence/scopes/). based on testing this caused the status 500 you mentioned.\n\nonce #1 is fixed, i am experiencing some th…",
"name": "",
"is_accepted": true
}
] |
46520cb65a4653493045186ee0c4f207 | i’m working on an app where the web trigger will be kinda important. is there a way for an admin to get hold of a web trigger url? or better yet - is it something i can calculate/fetch myself? (ideally i would love to be able to show in the admin ui the web trigger url). | any way to identify the web trigger url from within forge's ui | atlassian.com | 2021.31 | [
{
"text": "you can meanwhile use the [webtrigger.geturl()](https://developer.atlassian.com/platform/forge/runtime-reference/web-trigger-api/#webtrigger-geturl) method and expose it to users as you see fit (added [19 may 2021](https://developer.atlassian.com/platform/forge/changelog/#19-may-2021)):\n\nobtain the url for the web trigger module specified by the given module key.\n\nthe web trigger url is stable for each combination of:\n\nmodule key\n\napp\n\nsite\n\nproduct\n\nforge environment",
"name": "",
"is_accepted": true
}
] |
b8128187e50d266c357749a31c13e6b2 | how should we handle the case where migration of project-related app data fails? consider this:
the customer has three projects: a, b, and c. they start a migration that includes projects a and b only, plus our app. our app attempts to migrate some data associated with projects a and b, but fails o… | handling project-related migration errors | atlassian.com | 2021.31 | [
{
"text": "hi [@david.pinn](/u/david.pinn),\n\nthanks for the question. app migration doesn’t have to be tied directly to the jira projects or confluence spaces being migrated. all the migrated data like issue ids or content ids are available in subsequent migrations between the same server and cloud site for (up to) 14 days.\n\no…",
"name": "",
"is_accepted": true
}
] |
296bb2b3c06b9663275e18ec09c051c1 | anyone have any idea what is causing this error?
error parsing xhtml: unexpected character ‘=’ (code 61); expected a semi-colon after the reference for entity ‘at’\n at [row,col {unknown-source}]: [1,871]
i get this error when updating a content resource via the rest api.
url = '[https://millenniu…](https://millennium.atlassian.net/wiki/rest/api/content/47424243) | error when saving html via rest api : "error parsing xhtml: unexpected character '=' (code 61); ..." | atlassian.com | 2021.17 | [
{
"text": "it was caused because i didn’t escape & character in the html body.storage.value attribute. i replaced & with & a m p ; (i need to put spaces so it doesn’t get interpreted to & in this post) and it worked.",
"name": "",
"is_accepted": true
}
] |
b7af96cdef9096210145eded5b0337fc | i raised a request in <https://ecosystem.atlassian.net/servicedesk/customer/portal/14> to get my 3lo app approved for public usage. that was over 2 weeks ago and i have not had a response.
does anyone know how long it takes to get approval?
and is there any way to speed up the process?
i have payin… | how long does it take to get 3lo approval? | atlassian.com | 2019.43 | [
{
"text": "i think you found my ticket and i have responded to the questions i got there \nta \nmartin",
"name": "",
"is_accepted": true
}
] |
e8a95aa61d7c24808c2ab19b4c713499 | hi,
is it possible to have developer license for jira service desk when running atlas sdk?
i’m running jira with atlassian plugin sdk 6.2.14 and amps 5=6.2.11, servicedesk application is installed but not licensed. jira-software application is licensed though. timebomb license for testing does not… | developer license for jira service desk | atlassian.com | 2021.17 | [
{
"text": "hi [@daniel](/u/daniel),\n\ncustom test data set is the answer! just came to the same idea with [@gjoseph](/u/gjoseph) here on connect week in amsterdam.\n\nthanks a lot for your help!",
"name": "",
"is_accepted": true
}
] |
da054b7230d0623e0c21a1a53bda56cf | i’ve searched and it seems that i need to follow an atlassian document format to add to description field and i believe that i am doing that. the creation of the issue succeeds but when i look at the issue either in browser or via api the content part of the description field is empty.
in the body … | creating issues with api but description does not seem to get created | atlassian.com | 2021.39 | [
{
"text": "that behavior would be consistent with sending adf to the v2 rest apis. can you let us know which api endpoint your client is using?",
"name": "",
"is_accepted": true
}
] |
f4f0e934afcc5af34d6989f915050b73 | hello,
i am trying to set a user property (/rest/api/3/user/properties/?accountid=xxxxx) via the jira cloud rest api outside the connect app scope, but for the moment i get 401 unauthorized response.
what i am trying to accomplish is as follows:
user clicks on connect to our service on an issue … | accessing cloud rest api via generated jwt token | atlassian.com | 2021.25 | [
{
"text": "[@roberttutsek](/u/roberttutsek),\n\nauth is such a complicated chain! fortunately, we’ve eliminated the qsh, which is often the “prime suspect” in jwt. for background context, you might find this jwt explainer video useful:\n\n[[securing your atlassian connect add-on with jwt - atlascamp 2017]](https://www.youtube.com/watch?v=zaqk1nta440)\n\nbut to debug you…",
"name": "",
"is_accepted": true
}
] |
008597cbc7ed083673db6b7e7d72171a | hello team,
i tried to check the installation of my app in the developer console and i faced the following page.
this is not the first time which this happens. i check it also from incognito mode (cookies etc.), but i face the same.
any news about this?
best regards
[[2021-06-22 15\_02\_12-window…](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/6/f/6fb1ceca8df1fd0dd5eed9a9f586b7b9682788b5.png "2021-06-22 15_02_12-window") | developer console is broken time to time | atlassian.com | 2021.31 | [
{
"text": "when this happens, open up you developer console, find the graphql request, look at the headers and save the trace id. we can use that to work out what went wrong for you",
"name": "",
"is_accepted": true
}
] |
64892bebfd18185bea025eb5d03b0a71 | hey,
we plan to release a free forge app on the marketplace. before that, we would like to retrieve some stats about our app usage, to help us make decisions in the future.
example of data:
application sections visited (since it’s a single page application with a react router, retrieve the curre… | gathering some usage stats from forge apps | atlassian.com | 2021.43 | [
{
"text": "hey [@clement\\_garin](/u/clement_garin) and [@james.dellow](/u/james.dellow),\n\nwe are currently underway with a project to address exposing\n\nstats regarding our forge functions (number of execution, time, …)\n\nto developers through the developer console. this will be the first of many incremental releases to improve monitoring for forge…",
"name": "",
"is_accepted": true
}
] |
f0c6d083ee0d02cf06cd8571732ad210 | is there a way to display the issue detail view in a panel on a custom page, similar to what happens on the backlog page when you click on an issue link (see the highlighted area in the attached image)?
thanks!
john
[[image]](//uploads-discourse-atl-community-prod.s3.amazonaws.com/original/3x/a/b/abc7e1fca959d3c181ce82aefa09f496a9ee045e.png "backlog.png") | display issue detail view in a panel | atlassian.com | 2021.04 | [
{
"text": "i believe they are re-rendering everything, it’s not a component.\n\nthis is correct. we are working on a new issue view concept that will be more straightforward to embed and provide as a component. stay tuned :slight\\_smile:",
"name": "",
"is_accepted": true
}
] |
2b31252fddd79d2ddda182423e5c8bb2 | hi,
i have noticed that “jiraissueglances” module appeared so i tried to create my first glance for new issue view in jira.
unfortunately installing the add-on in jira fails with undescriptive error message:
an error occurred during installation. contact the add-on vendor for support.
no error… | jiraissueglances module | atlassian.com | 2021.17 | [
{
"text": "hey everyone! i can help out on this issue. i apologize for any confusion, but it seems you have stumbled across the [developer.atlassian.com](http://developer.atlassian.com) glance modules before we have actually ‘launched’ the alpha program which will be happening sometime next week.\n\nspecifically, this means we will be enabling t…",
"name": "",
"is_accepted": true
}
] |
761da79f367a8f128da474e551ffaa6a | i want api or any other way to fetch the below values for jira.
1.“number of completed stories”
2.“total number of stories”
3.“total accepted stories in a sprint”
4.“remainingstories”
5.“total planned stories in a sprint”
6. “number of done stories”
7. “number of spent days” | !urgenthelp! i want to fetch the response from jira for the below fields kindly help me in identifying the respected api | atlassian.com | 2021.17 | [
{
"text": "you know, searching on google goes a long way. try [searching for “jira software rest api”](http://lmgtfy.com/?q=jira+software+rest+api) and the first 2 links will give you what you are looking for … but you will still need to look at the different apis to get all the data that you want.\n\nthat’s how most of us got our expertise.",
"name": "",
"is_accepted": true
}
] |
c917b5b016cd58b36f20e5d77b4c03f0 | hi,
as documentation says on first installation jira would not send any jwt tokens for costumer. how my app supposed to act in this scenario? why is first install callback request empty? | handling first installation | atlassian.com | 2021.17 | [
{
"text": "if you want to verify the payload, you can actually do a request to the jira cloud instance using the client id and shared secret to generate a jwt token. if you are able to successfully connect, you will know the payload is valid.",
"name": "",
"is_accepted": true
}
] |
8154babc5bdadf5be7e8706db73c0402 | i’m trying to build an app using the atlassian-connect-express example and am having trouble with the prod environment installation. my app installs fine, but then i run into the error message below when viewing the app in my browser.
unauthorized: could not find stored client data for . is this cl… | unauthorized: could not find stored client data for . is this client registered? | atlassian.com | 2020.05 | [
{
"text": "hi [@x2boarder](/u/x2boarder),\n\nindeed, ace handles /installed web-hook so you don’t have to.\n\nif you still want to perform some actions upon installation, you can do it this way:\n\naddon.on('host\\_settings\\_saved', (clientkey, {eventtype}) => {\n\n// your code goes here\n\n}\n\ncheers,\n\njack",
"name": "",
"is_accepted": true
}
] |
9fc74150854badc6b318b4d0bfd0d9ef | hi,
i would say i read somewhere there was a parameter supported in the atlassian-plugin.xml to delay plugin initialization until jira is fully initialized.
after a lot of frustrating searching in google, perhaps i dreamed it.
does such configuration parameter exist?
thanks,
pablo. | lazy plugin initialization and/or plugin initialization delayed? | atlassian.com | 2021.17 | [
{
"text": "hello [@pablo](/u/pablo),\n\nas for jira, itself, you can specify whether the plugin starts up early or late by checking the value set in your atlassian-plugin.xml.\n\n<atlassian-plugin>\n\n<plugin-info>\n\n<startup>late</startup>\n\n</plugin-info>\n\n</atlassian-plugin>\n\nthe late in the above specifies that the plugin…",
"name": "",
"is_accepted": true
}
] |
660c0da04ce2e9cf2e3289c44b544274 | hi experts,
i am using jira rest java client core in my java project to create an issue in jira. i added proper dependencies and correct code but still, i am getting the below error. kindly someone can help me to resolve this error.
thanks in advance.
error:
java.util.concurrent.executionexcept… | error while using jira rest java client core | atlassian.com | 2021.17 | [
{
"text": "hey, i fixed the error, that url was not correct.\n\nuri = new uri(\"http://localhost:8080\");",
"name": "",
"is_accepted": true
}
] |
3412c28d32771905987b69cbe6ab7235 | hello,
i have a macro that runs and from the ui, invokes a rest endpoint in another class. in that target class, i’d like to retrieve the contententityobject for the page since i need access to the page properties.
if i was accessing this from the macro class it would be easy since i can use the … | retrieve contententityobject | atlassian.com | 2021.17 | [
{
"text": "you also have a couple of other mistakes:\n\ndata: \"$pageproperties\",\n\nwill render something like data: \"class.instanceobject\" and not actual data. even if you serialize the data then you get something like {"id":"92078504","spacekey":"uadce725"} which you will …",
"name": "",
"is_accepted": true
}
] |
81cccb828b14363ee4007efd3ddcc76d | i have a web-item in the top navigation bar which in an icon. it displays fine, except when i am in an administration page. what am i doing wrong?
atlassian-plugin.xml
<web-item key="my\_item" section="system.top.navigation.bar" weight="99999">
<link linkid="my\_item\_link">/secure/something!web… | image not loading when in admin pages | atlassian.com | 2021.17 | [
{
"text": "interesting. here’s my plugin.xml (which i patterned from yours).\n\n<web-item name=\"mywebitem\" i18n-name-key=\"my-web-item.name\"\n\nkey=\"my-web-item\" section=\"system.top.navigation.bar\" weight=\"99999\">\n\n<description key=\"my-web-item.description\">the mywebitem plugin</description>\n\n<styleclass>aui-bu…",
"name": "",
"is_accepted": true
}
] |
de8d313c2b8fe4d5cebc4d936d7db339 | [error] (*:update) sbt.resolveexception: unresolved dependency: com.atlassian.sal#sal-api;${sal.version}: not found
[error] unresolved dependency: com.atlassian.event#atlassian-event;${event.version}: not found
any way to provide version for provided transitive dependencies ?
its easily reproduci… | how to provide version for jira core provided transitive dependencies in sbt? | atlassian.com | 2021.17 | [
{
"text": "i managed to fix it by adding nottransitive() attribute in the build.sbt\n\n\"com.atlassian.jira\" % \"jira-rest-java-client-core\" % \"5.1.0\" nottransitive(),\n\nand by adding the transitive dependencies manually.",
"name": "",
"is_accepted": true
}
] |
97e7514fa29f853a7af47dcbcd7bc727 | so the issue i am having is when trying to bind a javascript function to a web-item, that i have placed in the “more” drop down menu under issue view, the web-item apparently does not exist yet. i am attempting the binding in ajs.$(document).ready. right now i have a temporary solution that will sim… | web-item shows up later than at document ready | atlassian.com | 2021.17 | [
{
"text": "there are 2 ways of handling it:\n\nuse ajs.$('###').live('click', function(evt){...});\n\nbind the the dropdown click first and then bind to your event after that.\n\nthe first way isn’t that great for performance if everyone is doing it. the second way can have a race condition.",
"name": "",
"is_accepted": true
}
] |
5c8c32573bccb32c5e1a725a875f2048 | for our confluence cloud addon, we have to implement adf parsers. we’re worried about loading the whole adf documents upfront in memory when we want to transform them. is there a maximum size for an adf document?
we have difficulty programming a parser which uses java streams (i’m talking about col… | what is the maximum size of an adf document? i.e. should we use a streaming parser? | atlassian.com | 2020.34 | [
{
"text": "hi [@aragot](/u/aragot),\n\naccording to the development team, we load the entire adf document into memory and then parse it.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
e530ba0ff5027a582fb994821e120af1 | hi,
i have switched my language to ru in personal settings.
now i get issues with
"issuetype": {
"self": "https://avelytchenko.atlassian.net/rest/api/2/issuetype/10000",
"id": "10000",
"description": "подборка похожих историй, заданий и связанных с ними ошибок.",
"iconurl": "https://avelytchenko.… | how to determine is issue via rest api an epic with non en\_en locale | atlassian.com | 2019.47 | [
{
"text": "hi jkells,\n\n3 steps and contact support looks a little bit complicated and not exact.\n\ncloud have 22 languages and epic has same name at en, de, fr. so it is possible to create an list of names and check if it contains issue.field.issuetype.name. it seems more simple and more exact.\n\n[‘에픽’, ‘эпик’, …",
"name": "",
"is_accepted": true
}
] |
354d46f30ab9e19162e2d79a4b758643 | hi,
i am using the atlassian-connect-spring-boot framework and having difficulties getting a response from the jira rest api <https://developer.atlassian.com/cloud/jira/software/rest/> via oauth. i have added act\_as\_user to the scopes in the app descriptor which is correctly setting the oauthclientid … | atlassian-connect-spring-boot jira rest api via oauth returning 400 bad request with auth server | atlassian.com | 2020.05 | [
{
"text": "[@epehrson](/u/epehrson) after swapping out the default factory in resttemplate to httpcomponentsclienthttprequestfactory and using the httpclient from apache i was able to get the following information from the request.\n\n{“error”:“invalid\\_grant”,“error\\_description”:“deprecated subject claim prefix urn:atlassian:…",
"name": "",
"is_accepted": true
}
] |
b328d4fc51fd1204416cc54b90ddaf87 | hi everyone,
i’m trying to retrieve a confluence page that has not yet been published, but already has an id. while editing the page, its url is
https://xyz.atlassian.net/wiki/spaces/eas/pages/edit-v2/201031681?draftshareid=606d49d4-d32a-48b6-93ec-24257c8a8681,
so the id of the draft is 201031681.… | cannot access draft page via rest api | atlassian.com | 2020.16 | [
{
"text": "i have finally managed to retrieve the draft page. all i had to do was using user impersonated call (<https://developer.atlassian.com/cloud/confluence/user-impersonation-for-connect-apps/>) together with status=draft at the url. thank you [@dmorrow](/u/dmorrow) for your advice. nevertheless the 3lo call cannot be …",
"name": "",
"is_accepted": true
}
] |
57ad6f01fcb34328e10cab46fd30709b | hi,
after installing my app, some users had bugs with other third-party apps.
my jira app use the library [atlassian-jwt](https://bitbucket.org/atlassian/atlassian-jwt-js/src/master/).
this library is itself dependant of the lodash library.
lodash defines the global variable \_.
so my app overrides the already existing global variable \_.
this causes bugs wi… | how to prevent conflicts of librairies between apps? | atlassian.com | 2021.39 | [
{
"text": "the best solution for this is to use iframes. that way you can isolate your server front-end code.",
"name": "",
"is_accepted": true
}
] |
20d09c1405dee32f49c6e416e9f1f3a0 | is there any way i can detect that my macro is being shown in edit mode and return a different macro than in view mode? i’m currently using the url property for my dynamiccontentmacro in my descriptor, which is always called, regardless of which mode the macro is rendered in. i had a look at the que… | how to render a different macro preview in edit mode than in view mode | atlassian.com | 2021.31 | [
{
"text": "see [dynamic content macro](https://developer.atlassian.com/cloud/confluence/modules/dynamic-content-macro/#:~:text=a%20confluence%20macro%20that%20loads,specific%20to%20the%20authenticated%20user).\n\nthere is a “output.type” you can receive\n\ndeclaring in atlassian-connect.json something like\n\n\"url\": \"/mymacro/{content.id}/{content.version}/{output.type}/{macro.id}/\"",
"name": "",
"is_accepted": true
}
] |
5784bcdc1d3ff8915368b0969f2b5750 | hey!
is there a chance to get the top position in the project side menu for an app specific menu entry? i’ll tried it with the weight attribute in the atlassian-connect.json (setting to ‘0’).
[[image]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/0/7/07c74e49db8dc611f6f8cc8ac332078926be9901.png "image")
can you help me?
thanks.
regards, patrick | position of menu entry in project side menu | atlassian.com | 2020.34 | [
{
"text": "hi [@patrick](/u/patrick),\n\nthere is no extension point corresponding to the blue arrow in the diagram you provided, but you can contribute links a little lower down. see <https://developer.atlassian.com/cloud/jira/platform/jira-project-sidebar/> for a guide on contributing to the project sidebar.\n\nregards,\n\ndugald …",
"name": "",
"is_accepted": true
}
] |
cef1ed7df151f8cfd50d440540954c44 | hi to the atlassian community. i have two questions
what’s the limits on options in [issue field](https://developer.atlassian.com/static/connect/docs/latest/modules/jira/issue-field.html), is it okay if there will be something about 2 thousand options in this field?
and how can i create custom jql operators like in server or something similar? i should add properties to the entity (like … | issuefield limits and jql search | atlassian.com | 2021.17 | [
{
"text": "welcome [@alexter\\_pr](/u/alexter_pr),\n\nfirst: that’s certainly possible but it might have a negative impact on the performance of your add-on.\n\nsecond: do you want to have your user be able to use that jql operator or do you just need this for your add-on to use internally? you can use this: [https://developer.atlass…](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/)",
"name": "",
"is_accepted": true
}
] |
7b76baafe32b7a62d12cfcc86f0576fc | i’m implementing a forge workflow validator to ensure issue summary is following some criteria like no issue with same summary exists in project. validator can be easily implemented
perform rest call using issue id
const res = await api
.asapp()
.requestjira(route`/rest/api/3/issue/${issu… | jira workflow validator in create transition - expression has complete issue object, lambda function only id/key | atlassian.com | 2021.39 | [
{
"text": "hello [@frankhess](/u/frankhess),\n\ni think it would make sense to send the entire issue data to the lambda function. i added this to our backlog.\n\nhowever, i must tell you that right now the workflow validator module is not our priority and i can’t give you any estimate on when (or even if) it will be done. also no…",
"name": "",
"is_accepted": true
}
] |
983410b04f513bc92ef7bc658b03377e | i’m confused by the section under [step 3: add the values of migrated app custom fields](https://developer.atlassian.com/platform/app-migration/migrating-app-custom-fields/#step-3--add-the-values-of-migrated-app-custom-fields) in the tutorial on migrating app custom fields. it says we can use the bulk api to populate the app custom field values, but it doesn’t say where we get those values from. does the core migration bring those value… | the tricky business of migrating app custom fields | atlassian.com | 2021.43 | [
{
"text": "hello [@david.pinn](/u/david.pinn) ,\n\nwhen the getsupportedcustomfieldmappings method from jiraappcloudmigrationlistenerv1 is implemented, it only enables to map the custom field references in respective entities at the cloud side. you can review this ticket with some details\n\n[[mig-420] repair custom field referenc…](https://jira.atlassian.com/browse/mig-420)",
"name": "",
"is_accepted": true
}
] |
a32eb79649ffd3e7225fdb45b27e8697 | we have an app that accesses the jira cloud rest api via oauth 2.0 (3lo) and a customer that is hitting api rate limits for the past 3 days.
i read through [the docs on rate limiting](https://developer.atlassian.com/cloud/jira/platform/rate-limiting/) but was not clear about the following:
do the documented rate limits apply to requests made via oauth (i.e. do the … | how do api rate limits work? | atlassian.com | 2021.10 | [
{
"text": "hi [@tbinna](/u/tbinna),\n\njira’s rate limiting implementation is optimised towards getting the most value out of atlassian’s server resources whilst protecting the user experience, but it not “app friendly” because it doesn’t provide apps with any certainty about limits and, as you point out, doesn’t necessarily…",
"name": "",
"is_accepted": true
}
] |
742c756fb96fb52ffad7e3a18fb6b504 | hi,
i am facing a weird issue where jar installation fails, if i run atlas-package once. and installs successfully if i run atlas-package twice. this issue is reproducible.
i don’t think it is related to specific jira version. providing the number just in case.
<jira.version>8.5.4</jira.version>
… | jar installation fails on running atlas-package once | atlassian.com | 2021.31 | [
{
"text": "if anyone else is having the same problem. please look at section - “optional extended config - includeexclude, scanneddependencies” of page [bitbucket](https://bitbucket.org/atlassian/atlassian-spring-scanner/src/master/)\n\nit makes sense. i haven’t tried it yet.",
"name": "",
"is_accepted": true
}
] |
2e5ec38ae436beb3c7fc871ec28f2201 | i am attempting to create a custom field type that has mostly the same functionality as a removable tag from <https://atlassian.design/components/tag/examples> in forge.
my issue is that the tags that i want (screen shot 1) seem to be only available when the function and edit sections from the yml b… | a custom field type that behaves mostly like a label | atlassian.com | 2021.25 | [
{
"text": "i have added a ticket for it [[frge-243] inline custom field edit - ecosystem jira](https://ecosystem.atlassian.net/browse/frge-243)",
"name": "",
"is_accepted": true
}
] |
79266577a3dbbc840b4078905d9fe6c6 | a bug?
i’ve been bashing my head against a problem with atlassian connect navigation today, and i’m pretty sure it represents a bug in connect.
basically, it appears that you can’t pass custom context parameters to an app’s admin pages.
this works
i have specified an admin page in my app descrip… | passing custom context parameters to admin pages. a bug? | atlassian.com | 2021.39 | [
{
"text": "thankyou [@markrekveld](/u/markrekveld) and [@david.pinn](/u/david.pinn) i confirm it’s a bug. i’ve created [acjs-1179](https://ecosystem.atlassian.net/browse/acjs-1179) and started working on a fix",
"name": "",
"is_accepted": true
}
] |
5551b2844d332abe9d279562ff396721 | hi guys
i’ve been developing a few apps here and there to help my team with mundane tasks.
one problem i’ve stumbled across a few times, is that sometimes, i need to loop through a list of items and call the api to perform some functions.
with custom ui, i get an error, that there is a rate limit… | best way to call api while looping through array | atlassian.com | 2021.31 | [
{
"text": "can you start by putting an await promise.all on your map?\n\ncurrently your code does not wait for any of the promises that the map creates to finish.",
"name": "",
"is_accepted": true
}
] |
b44ee60388d5dfe8d37a7272bd262f90 | hi team,
does anyone have any idea about how to get application properties values in jira cloud architecture?
i did below in server version. so, i need a way to do the same in cloud architecture. please help.
componentaccessor.getapplicationproperties().getstring(“jira.timetracking.default.unit”)… | jira cloud - get application properties | atlassian.com | 2021.17 | [
{
"text": "hi, [@kanuwanak](/u/kanuwanak).\n\ntry this endpoint rest/api/2/configuration (see [documentation here](https://developer.atlassian.com/cloud/jira/platform/rest/#api-api-2-configuration-get)). kindly check defaultunit in timetrackingconfiguration if that’s what you need.\n\ncheers,\n\nian",
"name": "",
"is_accepted": true
}
] |
16a0f1af65ac870abcdfd32b36480ee3 | hello community
i want to know please if there is an api that my help me to find :
the workflow list by project " workflow by {projectid or key } "
get status by {workflowid}
cheers. | get workflow and status by project | atlassian.com | 2021.43 | [
{
"text": "hello [@hamzabouallegue](/u/hamzabouallegue) ,\n\n[image] hamzabouallegue:\n\nthe workflow list by project \" workflow by {projectid or key } \"\n\nworkflows are linked to an issue type, if in case you are looking for workflow schemes mapped to a project (the response body also includes the workflows), you can try [get work…](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-workflow-scheme-project-associations/#api-rest-api-3-workflowscheme-project-get)",
"name": "",
"is_accepted": true
}
] |
681a32cd1737544f8adab7f280b5af40 | :warning: deprecation of data egress not declared in app manifest
starting 14 july 2021, we’re requiring newly deployed apps to configure runtime egress permissions
in their app manifest. after this date, apps without runtime egress permissions configured will not
work as expected.
to support th… | custom ui modals, data egress updates, and linting fixes | atlassian.com | 2021.43 | [
{
"text": "heya [@suryaa](/u/suryaa) sorry about the late reply.\n\nis any other way available to open modal dialog within single app?\n\nusing the modal api provided in @forge/bridge is the best way to open modals in apps.\n\nif no then how can i add resolver function to the modal(seperate app) in descriptor file?\n\ncalling i…",
"name": "",
"is_accepted": true
}
] |
c1fa08685373009318f5a6cd920b189e | hi, im using confluence server in version 7.11.6 and spring in version 5.1.7.release. i have problem with injection of spaceservice.
public class democlass extends spaceadminaction implements serializable
{
@confluenceimport
private transient com.atlassian.confluence.api.service.content.spaces… | wrong bean injection of spaceservice despite correct import | atlassian.com | 2021.43 | [
{
"text": "it looks like, that problem is related to spaceadminaction because in other services, this bean can be loaded without any issues.",
"name": "",
"is_accepted": true
}
] |
7f82bd99579d752527e4ce2fb8a187c7 | hello,
i’m actually writting a custom import plugin with the sdk and i reach the following :
1 - i made a jirawebactionsupport url to gather some “user” informations (velocity html form with visual effects js inside the input.vm) => the submit aui-button trig correctly the action class doexecute(… | plugin jirawebactionsupport using dodefault disable doexecute? | atlassian.com | 2021.39 | [
{
"text": "hi [@oliviercoquillard](/u/oliviercoquillard),\n\ncan you confirm what url was provided to the action attribute on the <form> element on the second page?\n\nthe jirawebactionsupport class will follow webwork’s standard actionsupport flow:\n\nassuming your action is exposed at the /my/action.jspa url, going to that url will invo…",
"name": "",
"is_accepted": true
}
] |
aeedd5ca9159a36d0ff3d9cbc927de2e | in my plugin i read the body of one page and copy expected data to another page. some chars are not loaded correctly.
chars:
ě č ř ý á í é ´ ú ů § ¨
are loaded like:
? ? ? ý á í é ´ ú ? § ¨
i load the body of page with:
page.getbodycontent().ge… | problem with special chars in page body content using java api (confluence 6.2.3) | atlassian.com | 2021.17 | [
{
"text": "dear martin,\n\nthe characters are correct considering that you get xhtml (confluence storage format) back from your call. special characters are escaped. you have to unesacape the html string - there are plenty of libraries which contain such functions (e.g. apache commons stringescapeutils).\n\ni hope…",
"name": "",
"is_accepted": true
}
] |
6ecf3185008f76dd48971b6837f642fc | hey everyone. i recently notice that when i install my app on a domain, the list of installation shows me 3 different types of that specific app, even though i only install my app as a “jira” product.
i want to know what is the difference between them?
[{01eab26d-b614-4d03-8887-1feb8d9f8679}.png] | why there is 3 types of installation for my product? | atlassian.com | 2021.21 | [
{
"text": "just to add an additional clarification here, the identity and ecosystem installations are internal-only installations that are necessary for the jira (or confluence) installation. that is, they come with the jira installation, so if you were to uninstall the jira installation, they will also get un…",
"name": "",
"is_accepted": true
}
] |
c85c8c1c66666b55825a63cfd0ede923 | hi,
i have a macro that takes into parameters some label. for a proper ux experience, i would like to mimic the behavior of the “content by label” macro with regards to the labels autocomplete and the load of the previous parameters. to do this i am using auiselect2.
so far i have been able to loa… | autocomplete with label within macrobrowser (like the "content by label" macro) | atlassian.com | 2021.17 | [
{
"text": "if anyone end up in a similar situation, i found the solution on this topic: <https://community.atlassian.com/t5/confluence-questions/how-to-make-a-parameter-a-label-picker-in-the-macro-browser/qaq-p/377605#u1011378> . using the prototype beforeparamsretrieved will allows your parameter to be insert…",
"name": "",
"is_accepted": true
}
] |
4ce1d38df0b76d5fad35b6685b63342e | hello,
i need to run a database setup task once the plugin is installed. for this i think i need to schedule a unique run\_once\_per\_cluster task. the problem is the task is running too soon and the active objects library is not initialised.
i read that i can use the lifecycleaware interface to wait… | waiting for active objects init | atlassian.com | 2020.45 | [
{
"text": "the answer seems to be that the lifecycleaware interface must also be specified in the exportasservice annotation, for some reason…\n\n@exportasservice({xxx.class, lifecycleaware.class})\n\n@named(\"xxx\")\n\npublic class xxximpl implements xxx, lifecycleaware {\n\n...\n\n@override\n\npublic void onstart() {\n\n…",
"name": "",
"is_accepted": true
}
] |
bdf4cea8efd52d7ca1bdef4835207ff0 | hey all,
this might be obvious and i just missed, i couldn’t find anything in the archives.
how do i activate a “free trial” on my app? i.e. the install button says “try it free” instead of “get it now”.
do i need to do “paid via atlassian”?
thanks,
alex | trial pricing for atlassian app | atlassian.com | 2021.21 | [
{
"text": "hey [@alexsopinka](/u/alexsopinka),\n\nour marketplace vendor support team can help you out with that.\n\nyou can reach them here: <https://ecosystem.atlassian.net/servicedesk/customer/portal/9>",
"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.