id
stringlengths 32
32
| text
stringlengths 0
895k
| name
stringlengths 0
33k
| domain
stringlengths 5
44
| bucket
stringclasses 19
values | answers
list |
---|---|---|---|---|---|
a5c420579f8681d994b8b00062514bc4 | i’ve read and followed [this document](https://developer.atlassian.com/static/connect/docs/latest/tutorials/migrating-from-acjs-v3-to-v5.html) explaining migration from v3 to v5 of the atlassian connect library. now i’d like to test it on the production environment. how can i disable the deprecated api? i’d like to have only v5 of the library available to ensure that i migrated my code properly.
thanks… | testing migration to javascript v5 library | atlassian.com | 2021.17 | [
{
"text": "hi [@mateusz.zielinski](/u/mateusz.zielinski),\n\nv5 is already the only library in production at the moment. we will be removing the migration guide from the documentation shortly.\n\nsome of the deprecated apis are still in production and won’t be removed until their deprecation dates as listed on their individual pages.\n\nse…",
"name": "",
"is_accepted": true
}
] |
568a605c50ec2384c10841db5c23a4a0 | hi, community.
is it possible to get access to all jira users by using ap? for example:
ap.request('/rest/api/3/users/search?startat=0&maxresults=20')
i see a bunch of questions related to getting all users, but most of them is outdated. right now i’m still using this endpoint to get users:
ap.r… | get all jira users with ap | atlassian.com | 2019.51 | [
{
"text": "[@piskunovigorm](/u/piskunovigorm)\n\ni discussed this with our team and we recommend to rethink your implementation. looking through hundreds or thousands of results is tedious for end user. so instead, only render the first n results (or none at all). if you want more than n results, a search is required. when you sear…",
"name": "",
"is_accepted": true
}
] |
bd72604ad173a35759011a252740c776 | hi there,
is it possible to force a reindex in confluence programmatically?
i want to clone the index from confluence to my own and need a fresh index if the app is installed.
bests
marcel | is it possible to start an reindex programmatically? | atlassian.com | 2021.39 | [
{
"text": "hi [@anon60878045](/u/anon60878045),\n\nthe indexing of content in confluence cloud is automatically done after any edits and there’s no way for apps to influence the indexing. an app, however, can register webhooks to listen to events such as page updates - i’m not sure if this helps with your use case.\n\nregards,\n\nduga…",
"name": "",
"is_accepted": true
}
] |
845081283c8110454277985f2e60f220 | hi,
i have two big problems with atlassian sdk and bitbucket.
i create fresh project via atlas-create-bitbucket-plugin command, run via atlas-run and stop ctrl+c. i use windows 10, openjdk 1.8.0\_222, atlassian sdk 8.0.16 and bitbucket server 6.5.
when i use shortcut to stop bitbucket, the termina… | can't start/stop bitbucket server | atlassian.com | 2021.17 | [
{
"text": "first:\n\natlas-mvn bitbucket:stop\n\nsecond:\n\nctrl+c",
"name": "",
"is_accepted": true
}
] |
05fd1d55bba58e09d06d477b17f766e8 | i working with firebase functions to send post requests to a callback uri. i created a webhook to listen for changes on a trello board list. all i want to do is just print the request body to the callback window. here’s my code:
const functions = require(‘firebase-functions’);
const cors = req… | cors read block on trello webhook | atlassian.com | 2019.47 | [
{
"text": "i’m a little bit confused by the setup that you have and when the corb is coming into play.\n\nare you able to successfully create the webhook via a post request to 1/webhooks? keep in mind that this fires off a head request to the url that you provide and your server must respond with a 200. you can …",
"name": "",
"is_accepted": true
}
] |
9880a458dccb3a026e7a6d9300845c9c | hello,
i’m working on an admin page for a jira plugin that can be accessed through the cog wheel at the top right when the user is a system admin. however, when a non system admin has the url to the page, they are still able to access it. what tools are available to not allow users to access a spec… | limiting access to certain pages | atlassian.com | 2021.31 | [
{
"text": "here is one way of doing it;\n\nby either injecting or calling through the componentaccessor, you will need the jiraauthenticationcontext and the globalpermissionmanager components.\n\nthe first one is used to get the logged in user .getloggedinuser() and the second one lets you confirm the user’s permi…",
"name": "",
"is_accepted": true
}
] |
bb294602db43ed5a3dcbf1b5531e03a6 | hello,
i have a macro on my page which executes
ajs.$("#page").css("display", "none");
to hide the main page and inserting other content. somehow hiding the
confluence page causing the site to crash. in firefox i get the message that a webpage is slowing down the browser. a confluence script ha… | jquery #page display none - script crashes | atlassian.com | 2021.17 | [
{
"text": "yes i’m using ajs.toinit. i even used a timeout to see if my script or making the page invisible is freezing. its clearly a internal script which runs concurrent and freezes.\n\nbut i finally found a workaround which seems to be working fine without triggering\n\nthe internal freeze bug! instead of maki…",
"name": "",
"is_accepted": true
}
] |
6c645f09b37259f13a977b61c10eb582 | hi,
can someone please help ?
i have developed a bit-bucket plugin for performing some operations on bitbucket repos (listing commits within merged commits etc…)
my plugin runs well in the atlassian sdk (bitbucket 5.8)
/var/atlassian/application-data/bitbucket/log$ atlas-version
atlas version: … | http error "get /mvc/error500 http/1.1" c.a.s.i.web.errorpagecontroller there was an unhandled exception loading [/plugins/servlet/repocommits/projects/tproj/repos/testrepo/commits/xxxx] | atlassian.com | 2021.17 | [
{
"text": "[@pvandevoorde](/u/pvandevoorde)\n\non the atlassian sdk the url for the http request is\n\n<http://ubox:7990/bitbucket/projects/project_1/repos/rep_1/commits/0a943a29376f2336b78312d99e65da17048951db>\n\nwhere as on the actual bitbucket server the url is\n\n[http://localhost:7990/projects/tproj/repos/testrepo/commits/60a8b47c8cf…](http://localhost:7990/projects/tproj/repos/testrepo/commits/60a8b47c8cf52260b2361ec52656b33409e011b7)",
"name": "",
"is_accepted": true
}
] |
05bb310d2498cc7eb672b572287590fe | i’m developing a listener plugin that will set the due date for an issue. the conditions are as following:
if issue has been assigned to a user
if an estimate has been set (like 4 days 5 hours)
the idea is to
get all the open issues assigned to the user,
order them by priority and created date
t… | how do i get working days and hours settings for a project (or maybe issue) | atlassian.com | 2021.17 | [
{
"text": "intriguing idea! but i wonder if that’s how our customers use due date. your interpretation is one valid use: it’s the date when the work might be completed. but another use is as an external constraint. like the due date for filing my taxes is 18 april. it doesn’t matter how much work i prioritize …",
"name": "",
"is_accepted": true
}
] |
a16182d191d389527238d631ab6dd110 | usually, when i make other server programs, i use was such as tomat, weblogic in the ide directly.
is it possible to run jira server directly in the ide because i want to use debug mode?
now, i am using a command window in the window 10… | how can i startup with jira server in the intellij? | atlassian.com | 2021.17 | [
{
"text": "to use the intellij debugger with a p2 plugin i use a [remote debug configuration](https://stackoverflow.com/questions/21114066/attach-intellij-idea-debugger-to-a-running-java-process).\n\nif you start your jira (or any other atlassian product) using atlas-debug and create a new remote debug configuration for port 5005 you will be able to use the intellij debugger just like you’re used to. simply set so…",
"name": "",
"is_accepted": true
}
] |
3af2d5fd8ca7eb4e0f33428999cd0fe4 | hi, i want my app to remove users from selected group(s) but jira rest api returns status 400 syntaxerror: unexpected end of json input.
here is my code:
import api, { route } from "@forge/api";
api.asapp().requestjira(
route`/rest/api/3/group/user?groupname=${groupname}&accountid=${accoun… | removing user from a group returns 400 via rest api | atlassian.com | 2021.39 | [
{
"text": "hey [@yagizhan14](/u/yagizhan14),\n\nthe error you experience is most likely related to the empty body in the response (which ends with 200 status code). the solution would be to process the response as text and not as a json e.g.\n\nconst request = await api.asuser().requestjira(route`/rest/xxxxxx`);\n\nconst result = awa…",
"name": "",
"is_accepted": true
}
] |
71ed85275fe717236e35d59ba93839ab | i am creating a custom report for jira. the report shows up in reports section, but when i click to view the report, it completely changes the context such that the user is no longer inside the reports section. the user is taken to the high-level jira dashboard and their left-nav just has those top-… | report is not preserving the project sidebar | atlassian.com | 2021.17 | [
{
"text": "hi [@brandnamesoftware](/u/brandnamesoftware),\n\nthis looks like a bug, i’ve reported it here: <https://ecosystem.atlassian.net/browse/acjira-1485>\n\nregards,\n\ndave",
"name": "",
"is_accepted": true
}
] |
19a2ce678989912cc0b602cd6632bbc8 | i’m building out some custom export functionality using a search request view, however i need the user to provide some additional configuration info before performing the actual export. my plan is to build out a form in a generalpages module and have the view returned by the search request view redi… | redirect from search request view | atlassian.com | 2021.17 | [
{
"text": "i ended up implementing the redirect server-side as a workaround, so i don’t have an example on my server anymore. however, it could be easily reproduced with a search request view containing the html in the original question.\n\ni did look more into the all-debug.js script and found that it seems to …",
"name": "",
"is_accepted": true
}
] |
3f09f627a7d411ed52134223efa4ebba | hi!
i created simple endpoint for generate pdf. it works, but i wanna send issue id to this api when i click the web-item button on issue page , ex. (i am in issue page with id 123) /rest/example/1.0/export/pdf?id=123
it is possible to do that?
now it looks something like that:
<web-item key="… | how create link with issue id in web item? | atlassian.com | 2021.17 | [
{
"text": "you should be able to use a magic property in the web-item, if you are on the issue view. if you look at this example (taken from the jira source code), you will see that you can use ${issue.id} in the link:\n\n<web-item key=\"add-attachments-link\" i18n-name-key=\"webfragments.view.issue.attachments…",
"name": "",
"is_accepted": true
}
] |
4c039999b50888354f5f0c705be3e4c8 | we have many packages with dependencies on each other. but we want to move towards fewer plugins. in this case, plugin-core is used by plugin-1. in the plugin-1 atlassian-plugin.xml, we have a custom field definition
<customfield-type name="my custom field"
key="plugin1.my… | move custom field definition from plugina to pluginb | atlassian.com | 2021.21 | [
{
"text": "hi [@ludoviccleroux](/u/ludoviccleroux),\n\ni would not recommend moving such elements as it can cause a lot of problems with existing installations. plugin dependencies are pretty easy once you have a good understanding of it - though, i try to keep “pure” plugins wherever possible.\n\nwhat will happen if you move your def…",
"name": "",
"is_accepted": true
}
] |
a2b9bf1cd340f321b3908deb393d5da4 | hello,
we are developing our cloud migration system that will migrate data from server to cloud using the app migration library.
after following the [documentation](https://developer.atlassian.com/platform/app-migration/getting-started) we were able to migrate our data from server to cloud successfully and we are able to get the mapping of the migrating page as mention… | how to get confluence attachments mapping after cloud migration | atlassian.com | 2021.10 | [
{
"text": "hello ali,\n\ni’ve been testing this today and for my sample migration i was able to see results for confluence:attachment and all the other expected mappings. the attachments need to be attached to the space your migrating. if you inspect the database you can query which attachments should be include…",
"name": "",
"is_accepted": true
}
] |
bb67cb6090acd6b4f19f17514fc19ce2 | hi folks, building a new atlassian connect application and have hit a snag; i’m able to generate a valid jwt just fine for non-querystring requests, but have not been able to crack the magic formula that would allow me to use jql. does anyone have an example of a full canonical request, or could som… | query string hash/jwt for jql queries | atlassian.com | 2021.17 | [
{
"text": "[@davidfisher](/u/davidfisher) can you try encoding the space as a %20 instead of %2b?\n\nadding: when you use a %2b, it is decoded as a literal + sign in jql, which is a reserved word/operator. it’s a bit confusing, but when you see + sign in a browser location bar, that’s actually encoded as a %20 before its sent to …",
"name": "",
"is_accepted": true
}
] |
216cf92a6f2adf3dc2929765ee8a99a4 | i’m trying to use jira:adminpage and it appears in the development environment as expected:
[[akj-backup-automation]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/d/6/d65cc513f79619fb67d29cf05f5a5a4664c781db.jpeg "akj-backup-automation")
however, it doesn’t in the production environment:
[[screen shot 2021-07-02 at 14.33.33]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/0/5/05702e09513881b34950615a2b9fb24eb553e75d.jpeg "screen shot 2021-07-02 at 14.33.33")
here’s the manifest.yml file and i’m a site-admin on both sites:
modules:
# ...
jira:… | jira admin page doesn't appear in the production environment | atlassian.com | 2021.31 | [
{
"text": "hi there!\n\nyou don’t need to specify display conditions in there as jira doesn’t allow non-admin users accessing that page. so please try removing it and check whether it works.\n\nthe second thing that might help is upgrading app’s permisisons. please run in the terminal:\n\nforge install --upgrade\n\nan…",
"name": "",
"is_accepted": true
}
] |
e2fb8c27ee009a2b29a65a4b59399fa0 | hello,
i developped a plugin for our bitbucket instance. i use the getfromhash() method from the [refchange](https://developer.atlassian.com/static/javadoc/bitbucket-server/5.5.1/api/reference/com/atlassian/bitbucket/repository/refchange.html#getfromhash()) class.
when using it in my plugin, i, and it’s kind of logic, has the attached stacktrace
com.atlassian.bitbucket.commit.nosuchcommitexception: commit '00000000000000000000000000000000000000… | getfromhash() from refchange class return '000000000000' | atlassian.com | 2021.17 | [
{
"text": "the 0000000000000000000000000000000000000000 is used as the fromhash for newly created branches or tags to indicate ‘does not exist’. likewise, the same zero-hash used as the tohash for branch/tag deletions.\n\nthe best way to prevent the nosuchcommitexception is to inspect refchange.gettype():\n\nif (o…",
"name": "",
"is_accepted": true
}
] |
a3b664dfba65896e9b0ea2ac20fed4bb | hi all,
i can’t install an app in development stage on a jira cloud instance: error message is (see snapshot):
the app host returned http response code 400 when we tried to contact it during installation
[[20]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/7/6/76689845ba476d3ed27a61b7677f8f438dc4a55b.png "20")
what causes this error code to be fired by the app host? actually the app i’m developi… | error 400 at app installation | atlassian.com | 2021.17 | [
{
"text": "[@frederictardieu](/u/frederictardieu) yeah, thats why it is smarter to use db, and it is really easy to setup in config.js… also i think i had something similar to your issue and when i deleted browser cache/history it was ok… at least you got it working somewhere, good luck :grinning:",
"name": "",
"is_accepted": true
}
] |
9e1a6d560396acb20543480a0ddc42d7 | hi,
i hope this is the right place for this topic.
we developed an addon for jira server that exposes a rest component called by a js script.
the api controller is defined as follow:
@path("")
@consumes({mediatype.application\_json})
@produces({mediatype.application\_json})
@scanned
public class m… | rest plugin addon - invalid serialized plain/jws/jwe object | atlassian.com | 2021.17 | [
{
"text": "my apologies… writing this topic actually made me notice this weird “authorization jwt undefined” header. i don’t know why this works in many installations, but this is most likely the culprit.\n\nnevermind :slight\\_smile:",
"name": "",
"is_accepted": true
}
] |
05fc42adb4d7d273ed6e9b7528566a08 | hi
i am trying to export a csv file i created with fetched content. how can i access the window or document dom to export, or do i have to do this differently?
thanks for your help.
kind regards
philipp | access window dom | atlassian.com | 2021.31 | [
{
"text": "i would make sure to properly test this, because esp. chrome is very adement about blocking cross-origin forced download. we recently had to implement a same-url proxy just to be able to allow users to export something. when you go custom ui, i would recommend looking into [filesaver.js](https://github.com/eligrey/filesaver.js) or [streamsave…](https://github.com/jimmywarting/streamsaver.js)",
"name": "",
"is_accepted": true
}
] |
a5da24d9a48b1ec1332284ccf325e568 | back in the days, when summits still were a thing and [@danielwester](/u/danielwester) still had the most read time on here, the developer community header linked to both the documentation as well as devhelp. [but the link to devhelp was removed at some point, due to it being refactored.](https://community.developer.atlassian.com/t/developer-support-link/33609) now, the documentation link fl… | can the developer community header get some love? | atlassian.com | 2021.17 | [
{
"text": "did someone pay you to post this? who put you up to it? was it [@rwhitbeck](/u/rwhitbeck)?\n\ni’ve been hacking on a new theme for the community that spruces the header up a little bit. screenshot of it here:\n\n[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/a/6/a6dc720e3c5fe441cf5171d76549ab7677ec1de7.jpeg \"image\")\n\ni’m hoping to make it a tiny bit dynamic so that new users are directed towards useful resources l…",
"name": "",
"is_accepted": true
}
] |
018b6dc3b841d1bcfb8de48b7f634d68 | i am having some trouble getting my rest resource working. i have created my own rest resource to save some data from a web-panel. i am trying to preform a ajax call tot the rest resource but it won’t work and i have no clue what i’m doing wrong.
i’ve tested my resource in the api browser and it wo… | can't call own rest resource from javascript with ajax call | atlassian.com | 2021.17 | [
{
"text": "there are two other things that i see are different but you mentioned that you used your endpoints in the rest api browser so didn’t think they would be the solution.\n\nthe first is declaring that your endpoint consumes json, i do this by declaring my endpoint with an annotation.\n\n@consumes(mediatype…",
"name": "",
"is_accepted": true
}
] |
57fe06571cdd4c86fdc5337c4c37ba70 | hi everyone,
how does one create new users on confluence server programmatically? | how to create users programmatically on confluence server? | atlassian.com | 2021.31 | [
{
"text": "hei [@chongjinghong](/u/chongjinghong)\n\nyou can make use of the com.atlassian.confluence.user.useraccessor#createuser method, [see javadoc here](https://docs.atlassian.com/confluenceserver/javadoc/7.10.1/com/atlassian/confluence/user/useraccessor.html#createuser-com.atlassian.user.user-com.atlassian.user.security.password.credential-).\n\nexample imports, service constructor, and code usage would be :\n\nimport com.atlassian.confluence.setup.settings.settingsmanager;\n\nimport com.atlassian.confluence.user.confluenc…",
"name": "",
"is_accepted": true
}
] |
0013cdfc6b78c74377fb8d67c86b25a1 | hello.
i’m trying sourcetree 1.10.23.1 on windows 7x64.
the problem is that sourcetree doesn’t show content of files that have more than 99 rows.
i tried to change settings in tools -> options -> diff
max file count: 10
size limit (text): 1024 kb
max diff line count: 10000
size limit (binary)… | cannot see content of large files in sourcetree | atlassian.com | 2021.17 | [
{
"text": "hi, i’m one of the sourcetree devs.\n\nyes it looks like a bug in the application of these settings. its something we are actively looking into at the moment. we expect to put a fix into our beta program releases shortly and then into production in the not too distant future.\n\nmike",
"name": "",
"is_accepted": true
}
] |
809f9c6f1ef06ba551615e009f25a55a | i am developing a jira server report and i am not able to load my css file.
in my atlassian-plugin.xml i define my web-resource like this:
<web-resource key="jira-reports-resources" name="wl-jira-report-plugin web resources">
<dependency>com.atlassian.auiplugin:ajs</dependency>
… | css not loading in report | atlassian.com | 2021.17 | [
{
"text": "apparently for customfields the approach using the method requireresource() is outdated and one should put these resources in <context>atl.general</context> . it worked directly with my reports too.\n\n[source](https://developer.atlassian.com/server/jira/platform/custom-fields-that-use-css-or-javascript-web-resources-in-jira-5-0/?_ga=2.4309813.700912812.1576483175-1644178911.1572429837)",
"name": "",
"is_accepted": true
}
] |
0ecf191de8422482a35a8ff5f7f7d2a2 | i just added a line to a forge macro and noticed it seams to create a second page when i add a sixteenth line in the table.
is there a way around this? can i show 20 lines or turn off paging all together?
thanks
best wishes
michael | can i turn off paging in a forge confluence macro? | atlassian.com | 2020.50 | [
{
"text": "[@michaelweilbuchner](/u/michaelweilbuchner) try this:\n\n<table rowsperpage={0}>\n\ni hope it will solve your problem.\n\ncheers,\n\nalek.",
"name": "",
"is_accepted": true
}
] |
d727fe0efc9e9342b2fe2263a28e3e45 | i’d like to extend the scope in the descriptor and add the write one to the current descriptor that i have.
additionally, i’d like to add the jwt authentication and an install/uninstall callbacks, so that i can store the sent credentials.
my question is, if i do that, will all the installations ha… | changes to scope in app descriptor | atlassian.com | 2021.17 | [
{
"text": "yes. while i’m not sure if the authentication upgrade and the callback additions will be a minor change or a patch change - the write scope will be a minor version change. any minor changes will require the instance administrator to approve the update. this means that there is a fair decent chance t…",
"name": "",
"is_accepted": true
}
] |
e12ff7c76b5a01f90247a76fe66916f0 | hi all,
i am digging through the documentation trying to understand how an add-on price increase affect my customers. [this page](https://developer.atlassian.com/platform/marketplace/pricing-payment-and-billing/) answers most of my questions but i am not clear about the following statement:
existing customers get a 60-day price override so they can pay the lower price when they r… | how does add-on price increase affect customers? | atlassian.com | 2021.17 | [
{
"text": "hi tobias,\n\nit’s referring to the same user tier. basically, so long as your customer doesn’t change the user tier they are buying the license at they have a 60 days window to purchase again at the grandfathered price. if they change the user tier they pay the new price.",
"name": "",
"is_accepted": true
}
] |
10ee40c6726ab798d3074c4aaa53d77e | hi there,
i would like to update the avatar of my app within the developer console but cannot: i click on “change avatar” and upload a png-image, which is displayed correctly. then i hit on “save” and just get a server error occurs like on the screen copy below:
[[bildschirmfoto 2021-09-05 um 13.2…](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/b/b/bbd605ca9baffd1b69a80c90656ae77187e729e6.png "bildschirmfoto 2021-09-05 um 13.29.59") | cannot update avatar of forge app within the developer console: server error | atlassian.com | 2021.39 | [
{
"text": "[@frank](/u/frank) today i deployed a minimal fix that prevents the error, however, it seems you’ll need to refresh the page to see your updated avatar once the loading spinner finishes",
"name": "",
"is_accepted": true
}
] |
3a755b93882604bd7b75662251fc7bd3 | hi everyone,
we were wondering if there is any default validation of the type of users who can access to configure page module (eg, only those included in the site-admin group), before adding conditions.
thanks in advance! | default condition in module | atlassian.com | 2021.21 | [
{
"text": "hi, the api you have used returns all the possible permissions that exists in jira. the api to check user’s permission is <https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-permissions/#api-rest-api-3-permissions-check-post>. we are also working on [https://ecosystem.atlassian.net/b…](https://ecosystem.atlassian.net/browse/acjira-2177)",
"name": "",
"is_accepted": true
}
] |
1702afe53d51679430babfe3cc4e97fc | hello,
i’m trying to create issue via rest with some customtype field set, but it returns me a bad request with response: customfield cannot be set. it is not on the appropriate screen, or unknown. my customtype field is associated with ‘default screen’, so in my opinion this error shouldn’t occur. … | customfield cannot be set | atlassian.com | 2021.21 | [
{
"text": "we decided to use <https://docs.atlassian.com/jira/rest/cloud/#api/2/issue-editissue> with the flag overrideeditableflag set to true. there was no other way to set the custom field… using this flag requires the highest addon permissions which is limiting the audience of our addon…",
"name": "",
"is_accepted": true
}
] |
62b903a778c26a2ed23873b7579dd309 | i have several manatee.trello clients who have recently been broken without any changes on their end. they did note, however, that when they disabled the custom fields power up, it started working again.
the error that the api is returning is “invalid value for plugins.” i don’t have any request i… | custom fields in the api broken | atlassian.com | 2019.51 | [
{
"text": "it looks like we shipped a change where we started enforcing a validator on that parameter. the valid values are: none, enabled, available, all.\n\nwhat i’ve not figured out yet is why this was previously working because that validator is very old.\n\nwould that call actually include the plugins? i woul…",
"name": "",
"is_accepted": true
}
] |
17a0d8b6e6209d376e38973482d9193b | hey there!
i’m struggling to find a solution how to obtain a list of confluenceusers following a given user, or finding users a given user is following.
i’m using the confluence sdk 6.6.0.
i found the notificationmanager to check if a user follows a space, page or other content, but i don’t know … | getting users following a user | atlassian.com | 2021.17 | [
{
"text": "hello [@cwittenb](/u/cwittenb), check out [networkservice](https://docs.atlassian.com/confluenceserver/javadoc/6.13.0/com/atlassian/confluence/api/service/network/networkservice.html) if it fits your use case.\n\ncheers,\n\nian",
"name": "",
"is_accepted": true
}
] |
77811337db3d3a160aa4f9c9754f8f03 | i’m working as an end user in a confluence server environment. i do not have access to the administration area and my primary development work consists of leveraging the underlying ajs.$ jquery framework.
i recently came accross the autocomplete input field which was perfect as a front end page sel… | autocomplete javascript component | atlassian.com | 2021.17 | [
{
"text": "have you tried .val() instead of .value?",
"name": "",
"is_accepted": true
}
] |
7891595549d889567a5b6b4e5c17d233 | is there a reason why the link for creating devhelp tickets was commented out?
[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/2/0/20b3dc460f4f63c9f03d6d409ae041fed0657adc.png "image") | developer support link | atlassian.com | 2021.17 | [
{
"text": "hi [@sven.schatter](/u/sven.schatter) - devhelp is currently being refactored. we’ve been getting inundated with general support questions that belong on the developer community despite our best effort of describing what devhelp should be used for. general questions need to be posted here, on the forums.\n\nfor the speci…",
"name": "",
"is_accepted": true
}
] |
95ce0e38a00a098b8f33be0466ff8c96 | greetings,
i created my first working confluence plugin including a custom blueprint and context provider. i always tested the plugin via atlas-run -dskiptests=true -dmaven.test.skip=true since i don’t have any test-files at the moment.
i wanted to deploy the plugin to our production confluence se… | properties-file gets ignored in production? | atlassian.com | 2021.17 | [
{
"text": "you probably answered yourself. switch to english or rename the properties file as suggested.\n\ni don’t have access to computer atm so have it difficult to find you link though googling should be easy.\n\nno you don’t need transformer when in backend",
"name": "",
"is_accepted": true
}
] |
084a39df63d4f2c15d04e20383b68134 | hi,
making an api request from my custom ui app to an external resource is block and i see the logs below in my browser console.
refused to connect to ‘<https://12fad15f51cx.eu.ngrok.io/api/xxxx/issuekey/xxxx>’ because it violates the following content security policy directive: “connect-src ‘self’”… | unable to make rest api request to an external resource from my custom-ui app | atlassian.com | 2021.39 | [
{
"text": "[@onucheidoko1](/u/onucheidoko1) hey, you will likely need to configure your [permissions](https://developer.atlassian.com/platform/forge/manifest-reference/permissions/#content-permissions), in your particular case, this looks like a [client egress](https://developer.atlassian.com/platform/forge/manifest-reference/permissions/#client). let me know if it helps.",
"name": "",
"is_accepted": true
}
] |
8d487c20227c6921c166a8604e33274b | i just came across [this article](https://community.atlassian.com/t5/confluence-cloud-articles/try-and-give-feedback-on-an-early-release-of-confluence-home/ba-p/1611356) about the confluence home over on the atlassian community, stating that atlassian is working on the next iteration of this experience. since the confluence home has an integration point (web panel location atl.dashboard.secondary) and we are using that in one of our a… | new confluence home eap - how can marketplace partners be involved? | atlassian.com | 2021.10 | [
{
"text": "hi [@sven.schatter](/u/sven.schatter) and [@james.dellow](/u/james.dellow),\n\nthanks for the questions and your patience!\n\nthere will be no change to 3rd party app integration points or how they are surfaced in home (the page that loads when you click “home” in the top navigation)\n\nin the early access program, we are primarily trying out …",
"name": "",
"is_accepted": true
}
] |
c4f6ba8d186122693946d2d9caaf8b90 | i am developing a plugin which contains different post functions. i developed and tested the first postfunction successfully and everything worked fine. i started to develop the second one and got an error that a osgi resource cannot be resolved to an url because it does not exist. here is the full … | why does my osgi resource not exist? | atlassian.com | 2021.25 | [
{
"text": "i had a mistake in my definition in the pom. i imported the package com.atlassian.jira.workflow but had a .* at the end which caused the error.",
"name": "",
"is_accepted": true
}
] |
91940bc51a896d6c08d2efb4dcd8fc28 | is there a way to create full page power up?
i can only see buttons, badges, etc, in the documentation/guides, i would like to create a power-up where user can have a dashboard, so i need a full page rather than only adding items to the cards
regards,
neri | full page powerup | atlassian.com | 2021.39 | [
{
"text": "it sounds like you’d want to open a fullscreen modal: <https://developer.atlassian.com/cloud/trello/power-ups/ui-functions/modal/>",
"name": "",
"is_accepted": true
}
] |
3867fe5eb2b864c2cc4a11b6093637c3 | i was wondering what type of database does butlerbot use under the hood? is it nosql or sql? | database used by butlerbot? | atlassian.com | 2020.10 | [
{
"text": "dynamodb, which is nosql.",
"name": "",
"is_accepted": true
}
] |
f6c3ad3d2df3322395ff4bc04cce6968 | i’m trying the module as show below, but the page /search-view opens full screen, not in an iframe. i get my plugin’s host url and no header or footer.
how to open /search-view inside an iframe?
"jirasearchrequestviews": [
{
"url": "/search-view",
"k… | webitems and jirasearchrequestviews modules - how to open page inside iframe? | atlassian.com | 2021.17 | [
{
"text": "hi [@tomasz.kustrzynski](/u/tomasz.kustrzynski),\n\nas to the [search request view](https://developer.atlassian.com/cloud/jira/platform/modules/search-request-view/) module, i don’t believe that it supports iframe loading at the moment. as the documentation says: “[the link in the export menu] will redirect to the url that is provided by your add-on”.\n\nthe target attribute for web items, which you haven’t sp…",
"name": "",
"is_accepted": true
}
] |
fe398394322e54f7ffa20067f18b482d | hi everyone,
i need to count the total number of issues that have a specific property not empty via api rest (cloud).
so when searching for the issues with my specific property, for example:
rest/api/2/search?jql=project=10001&fields=*none&maxresults=-1&properties=com.a.b.c.panel\_data-12345
i ge… | retrieving issues via search rest api (cloud) with specific property that is not empty | atlassian.com | 2021.17 | [
{
"text": "hi, [@dusan.spaic](/u/dusan.spaic),\n\ndo you have a connect app?\n\nyou can add a property extraction (using the [entity property module](https://developer.atlassian.com/cloud/jira/platform/modules/entity-property/)) that would make the property searchable in jql. then you would be able to write a query to return only issues with that property set:\n\nissue.extractedproperty is not empty\n\nin the rest…",
"name": "",
"is_accepted": true
}
] |
3aa182904e28ec71b0f3b918e7f40c62 | is there any work around on how can i set a card description using api call? i looked in api docs but did not find anything in card’s post type. | set a card description using api | atlassian.com | 2020.10 | [
{
"text": "here is the documentation on updating a card: <https://developer.atlassian.com/cloud/trello/rest/#api-cards-id-put>\n\nyou can make a put request with the updated description in the query like:\n\n[https://api.trello.com/1/cards/{idcard}?desc=newdescriptionhere&key=yourkey&token=yourtoken](https://api.trello.com/1/cards/%7bidcard%7d?desc=newdescriptionhere&key=yourkey&token=yourtoken)",
"name": "",
"is_accepted": true
}
] |
f82b34fa90678c105c5bccd356e1cd6a | i have a webitem with servlet on the system top navigation bar.
even after the session timeouts(cleared the browser cache), the webitem still displays the form.
i wanted to make the user to login by providing their username and password.
i tried the steps provided [in this link](https://developers.atlassian.com/server/framework/atlassian-sdk/adding-websudo-support-to-your-plugin/) but it didn’t go to… | how to prompt for login after session timeouts when a webitem is clicked? | atlassian.com | 2021.17 | [
{
"text": "in my servlet’s ```doget`` method, i have this code:\n\n@nullable applicationuser user =\n\njiraauthenticationcontext.getloggedinuser();\n\nif (user == null) {\n\nhttputils.sendredirecttologin(req, res, loginuriprovider);\n\nreturn;\n\n}\n\nthe loginuriprovider is injected into my s…",
"name": "",
"is_accepted": true
}
] |
10fbcd434b888531d380496971122051 | we are the maintainers of the [bamboo artifactory plugin](https://github.com/jfrog/bamboo-artifactory-plugin).
while testing the plugin with bamboo 7, we noticed that after the upgrade, the plugin code was no longer able to read or write its artifactory servers configuration to the database.
the plugin is currently [using bandana manager to do this](https://github.com/jfrog/bamboo-artifactory-plugin/blob/master/src/main/java/org/jfrog/bamboo/admin/serverconfigmanager.java#l60).
… | data persistency using bandanamanager stopped working with bamboo 7 | atlassian.com | 2020.29 | [
{
"text": "hi [@eyalbe4](/u/eyalbe4),\n\ni would have expected that you know the difference between setter and constructor based dependency injection. that means, instead of:\n\npublic void setbandanamanager(bandanamanager bandanamanager) {\n\n//...\n\n}\n\nyou’re using a constructor now:\n\npublic serverconfigmanager(bandanamanager band…",
"name": "",
"is_accepted": true
}
] |
91148033eddfd5d5a56c0d5b66913b40 | i have trouble getting my licensecondition to work. i try to retrieve the license from the pluginlicensemanager but the same error keeps being thrown.
every time the condition is called i get the following error:
“warn admin 681x1724x1 10pm37e 0:0:0:0:0:0:0:1 /browse/sd-7 [c.atlassian.ozymandias.s… | retrieving license throws errors! | atlassian.com | 2021.17 | [
{
"text": "try adding <scope>provided</scope> to this:\n\n<groupid>com.atlassian.upm</groupid>\n\n<artifactid>upm-api</artifactid>\n\n<version>2.21</version>\n\n</dependency>\n\n<dependency>\n\n<groupid>com.atlassian.upm</groupid>\n\n<artifactid>licensing…",
"name": "",
"is_accepted": true
}
] |
12753d774963e3622594cd930393de0a | hi!
when i accept pull request, tags from fork are not copy to upstream. it’s normal behavior, but i really want this tags. so, i have a few questions:
how i can run code when i accept pull request?
how i can pass information about this two repositories to above event?
i found example, how get i… | pull request merge event - tags | atlassian.com | 2021.17 | [
{
"text": "finally, it works! thank you [@yorlov](/u/yorlov) for your help!\n\ni do two things:\n\nadd logging.logger.{packagename}=info (in my case, logging.logger.com.example.prl=info ) line to {projectfolder}/target/bitbucket/home/shared/bitbucket.properties\n\nadd packages to <import-package> in pom.xml file (in my case, a…",
"name": "",
"is_accepted": true
}
] |
27008b13653f06e95cb85760f5007597 | hi i am using jwt authentication to connect jira rest api.
<https://xxx.atlassian.net/rest/api/2/issue/68658?overridescreensecurity=true¬ifyusers=false> is not working whereas
<https://xxx.atlassian.net/rest/api/2/issue/68658?overridescreensecurity=true>
whenever i include 2 query strings in url .… | unable to use multiple query string parameters while using jwt | atlassian.com | 2021.17 | [
{
"text": "i think we forgot this rule/step in computing the canonical query string\n\nsort the parameters primarily by their percent-encoded names and secondarily by their percent-encoded values.\n\nkindly try “notifyusers=false%26overridescreensecurity=true” instead.",
"name": "",
"is_accepted": true
}
] |
461250efbb1b47ae52c8064db4b12d01 | hi, community,
is it possible to have one atlassian connect add-on both for jira and confluence.
is it possible to have several atlassian-connect.json descriptors there? if yes, should they be registered separately in atlassian marketplace?
thanks! | one atlassian connect add-on both for jira and confluence | atlassian.com | 2021.17 | [
{
"text": "yes - your backend can do whatever you want.\n\nas far as the descriptor and marketplace it gets complicated. if you’re using jira or confluence specific modules - you have to have separate descriptors. if you’re doing a paid descriptor (or if you’re thinking that you’ll ever have it be paid) you’ll n…",
"name": "",
"is_accepted": true
}
] |
0407b6dbef174f80c648dd8940a01da2 | there is a labels list macro <https://confluence.atlassian.com/confcloud/labels-list-macro-724765224.html> but is it possible to access its rest api some how ? | is there a rest api call in confluence cloud to return all labels present in a space? | atlassian.com | 2021.17 | [
{
"text": "have you looked at the get content for space endpoint?\n\n<https://developer.atlassian.com/cloud/confluence/rest/#api-api-space-spacekey-content-get>\n\nthis endpoint looks like it returns all content for a space. you can then add an extend property meta.labels to get the labels for each page.\n\nonce you …",
"name": "",
"is_accepted": true
}
] |
81d4c3c7f49717f7ffc5ee5136e0b3c8 | hi,
in earlier days there was a clear 1-to-1 relationship between a connect app and an app user that was - more or less - treated like a normal user, i.e. you could consciously make decisions about granting or not granting access to spaces or what level of access the user had.
this way a user or o… | plans/roadmap: what is happening to the app users in the ui? | atlassian.com | 2020.29 | [
{
"text": "i have created issues for the jira and confluence teams to explain how app user permissions should be managed:\n\n[explanation of jira connect app user permissions](https://ecosystem.atlassian.net/browse/acjira-2095)\n[explanation of confluence connect app user permissions](https://jira.atlassian.com/browse/confcloud-69755)",
"name": "",
"is_accepted": true
}
] |
a63df6c5228c062e146933de7374962b | hi all,
i am developing a jira cloud add-on, based on ace. i am following the tutorial, and my add-on file tree looks like the attached snapshot.
question: how to invoke an add-on back-end endpoint front a frontend js?
in routes/index.js, i have:
app.get('/deeper-load-project',
// requi… | how to access atlassian connect express backend end points from frontend js | atlassian.com | 2021.21 | [
{
"text": "just plain jquery using ajax (so i can get the json content type). the key is to set the authorization header before hand:\n\n$.ajaxsetup({\n\nheaders: { 'authorization': 'jwt {{token}}'\n\n});\n\nis what we do.",
"name": "",
"is_accepted": true
}
] |
5eda1f0308082fe7dae973f58981aa7d | hello,
i have a jira server 7.3.6 instance installed and i’m trying to integrate it with another web app using the rest apis.
for this purpose i tried creating an ‘application link’ by following the steps mentioned here - [https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-oauth-auth…](https://developer.atlassian.com/cloud/jira/platform/jira-rest-api-oauth-authentication/) | jira server 7.3 unable to configure oauth incoming authentication | atlassian.com | 2021.17 | [
{
"text": "it looks like puttygen actually doesn’t provide you with an openssl approved key.\n\nonce you have your key created you need to export the key as an openssl key and save it for later.\n\n[image]\n\ncan you please try that?",
"name": "",
"is_accepted": true
}
] |
ba973612f1231e55a7b784317f3bfe5a | we have a plugin for jira, but we are intending on soon extending the functionnalities to be used with service desk (server version).
we will have to do some development and use the service desk java api. the question i had was about the plugin compatibility with a jira instance that does not have … | managing a plugin for both jira core and jira service desk | atlassian.com | 2021.17 | [
{
"text": "take a look at [optional dependency on servicedesk api](https://community.developer.atlassian.com/t/optional-dependency-on-servicedesk-api/13834) . basically you’re going to have to abstract the service out.",
"name": "",
"is_accepted": true
}
] |
b8550768a9132dfe3908cff5d5619ebf | hi,
this tutorial indicates that you can put ${board.id} in a web-item:
<https://developer.atlassian.com/jiradev/jira-applications/jira-software/tutorial-adding-a-dropdown-to-an-agile-board>.
i am trying to do this in the sidebar. for example:
<web-item key="tools" name="tools" section="jira.proje… | board.id not working in sidebar | atlassian.com | 2021.17 | [
{
"text": "for others had to add this to atlassian-plugin.xml:\n\n<component key=\"contextprovider\" class=\"com.example.contextparamsproviderimpl\" public=\"true\">\n\n<interface>com.atlassian.plugin.web.contextprovider</interface>\n\n</component>",
"name": "",
"is_accepted": true
}
] |
d075f949e2b646dba55818cf8254d20a | hi,
i am trying to edit the version of a project using versionmanager.
versionmanager.releaseversion(versionobject,true);
log.info("***** release status changed to : "+versionobject.isreleased()+" *****");
i am changing the release status of a version using the above code. but after exe… | unable to edit version with versionmanager | atlassian.com | 2021.17 | [
{
"text": "found the answer. had to capture the return value.\n\nversionobject = versionmanager.releaseversion(versionobject,true);",
"name": "",
"is_accepted": true
}
] |
fc09f1689ad18a6a5218ba862a84e2f7 | hi,
i’m trying to install the datacenter app performance toolkit in my local dev machine by flowing this guide: <https://developer.atlassian.com/platform/marketplace/dc-apps-performance-toolkit-user-guide-jira>
and i have the this error in two environnements windows server 2016/linux centos 7.
flow… | error executing datacenter app performance toolkit | atlassian.com | 2021.04 | [
{
"text": "hey there amine,\n\nwith questions regarding the dcapt, i recommend checking out the [community slack](http://bit.ly/dcapt_slack), where cool atlassians working on the toolkit as well as some community members talk and discuss about the toolkit and provide support for it.\n\nregarding your problem: looks like you are missing <pytho…",
"name": "",
"is_accepted": true
}
] |
814dfe08460ef8e92e910a72fb394395 | [update: 12 jul 2021] enforcement date is extended from 20th august to 29th october 2021.
[update: 15 jul 2021] please upgrade atlassian connect express(ace) versions to v7.4.0 or later. previous versions ( v7.1.5 ~ v7.3.x ) automatically opts in to this new feature that results in creating a new a… | action required - atlassian connect installation lifecycle security improvements | atlassian.com | 2021.39 | [
{
"text": "hi [@mehmetaydogdu](/u/mehmetaydogdu), apologies for the confusion. after double checking the acsb changes it looks like the configuration name has been renamed to below right before the announcement.\n\natlassian:\n\nconnect:\n\nallow-symmetric-auth-install-callback: false",
"name": "",
"is_accepted": true
}
] |
f68bcd490b23ae84f1535bbbe51d6b3f | i have the error which is below , when i make a rest plugin…
i have searched for this issue… i have tried many way of which have been given…
but… i could not find out a solution which is suitable for me…
io.atlassian.util.concurrent.lazyreference$initializationexception: com.sun.jersey.api.contai… | when i am a rest plugin module, some kinds of resource problem | atlassian.com | 2021.17 | [
{
"text": "i have found out the answer the fact that there is something wrong in the atlassian-plugin.xml for the test unit…\n\nso… i eliminated the wrong part… then it is ok",
"name": "",
"is_accepted": true
}
] |
fae6bfd13eab0a00823913c71bc87684 | hi, i need to find out if the company is already stored in jira. but the company identification number starts with zero. for example 00123. any change is not posible because its national company identification number.
i tried transform value to string.
task
$value = "012345678";
$response = $jira… | find by customfield(text), but the value start with zero('s) in symfony nativehttpclient | atlassian.com | 2020.34 | [
{
"text": "solution:\n\nthe html\\_encode gave before $value this: %20.\n\ntogether it looked like this:\n\n%20012345678%20\n\nand that was the problem.\n\nthen i looked into jira and wrote the same jql string and export to xml.\n\nthere was this:\n\njql=issuetype+%3d+z%c3%a1kazn%c3%adk+and+project+%3d+bs+and+i%c4%8co%7e%2201…",
"name": "",
"is_accepted": true
}
] |
9401ac4bcaff9d32b26ed0e611349472 | when calling get /rest/api/2/project, i’m not seeing a projectcategory in the projects returned which i’ve seen described by other people. i’m using this while working with a dropdown menu that holds all of the projects on a jira server, and am planning on using the category to filter out projects u… | is there any way to access either the categories of a project, or a list of projects under a certain category using the jira rest api? | atlassian.com | 2021.17 | [
{
"text": "i’ve looked into the code for my project and realized that the data returned from the api was trimmed by a different team mamber so i wasn’t seeing the projectcategory object. i can see it now and have no more issues.",
"name": "",
"is_accepted": true
}
] |
f98144a955112784af1de2165bdc2955 | i’ve developed an addon for confluence cloud where i use custom content to store data.
when trying to migrate the addon to a p2 plugin for server, i can’t find any documentation on working with custom content.
is there a server soloution for creating custom content? [(https://developer.atlassian.co…](https://developer.atlassian.com/cloud/confluence/modules/custom-content/) | does confluence server has an alternative to the "custom content" module for cloud? | atlassian.com | 2021.17 | [
{
"text": "i’ve built several custom content types for confluence server and i do not think there is any official documentation for it. maybe one day i’ll get around to posting some sample code.\n\ni have found this: [https://community.atlassian.com/t5/confluence-questions/custom-content-types-in-confluence/qaq-p…](https://community.atlassian.com/t5/confluence-questions/custom-content-types-in-confluence/qaq-p/92642)",
"name": "",
"is_accepted": true
}
] |
b517b304759dd87c3cf5d3679c905b5a | hey,
as the title states, when inserting any kind of link into a dynamiccontentmacro, the default behaviour is that this opens within the iframe, rather than the entire window.
i’ve tried working around that by tempering with the eventlisteners on all ‘a’-tags, preventing the default event and cal… | dynamic macros: links are opening within the iframe of the macro | atlassian.com | 2021.10 | [
{
"text": "hi [@philipfeldmann](/u/philipfeldmann),\n\npretty sure what you wanna do here is one of those:\n\n<a href=\"...\" target=\"\\_top\">open link in iframe parent</a>\n\n<a href=\"...\" target=\"\\_blank\">open link in new tab</a>\n\ncheers,\n\nsven",
"name": "",
"is_accepted": true
}
] |
54c0493e3fedf1ce9404ba6c621ea2ad | hi colleagues.
i have multiple type values customfield. it properly searchable by free text searcher but i need to add something like date range search support. somebody has solved a similar problem? | add different type searchers for customfield | atlassian.com | 2021.17 | [
{
"text": "ok, i understand. i think you are in for a difficult journey. i’ve never done what you are considering, but i believe you’ll have to implement your own searcher, extending the abstractinitializationcustomfieldsearcher class. your searcher will combine the behaviour of the textsearcher class and the d…",
"name": "",
"is_accepted": true
}
] |
7560b42c138b6ce50325ff0a31225a6a | hello,
as the title says i want to update the issue glance web panel content described initially in atlassian-connect.json on a request or a specific webhook (i am building a connect app).
if i receive a specific request i need to change the glance content and keep it that way until user clicks on… | how can i update issue glance target web panel content based on a request? | atlassian.com | 2021.39 | [
{
"text": "hello,\n\nfor anyone interested, my solution for this was when the popup (window.open) is opened i wait for it to close on an interval (1 second) and when it closes i clear the interval and make a request if my apikey was set or not.\n\nif api key is set i can change the issue glance content.\n\ni hope t…",
"name": "",
"is_accepted": true
}
] |
5c18565812e291bfc5c6277d56d4330c | i’m creating pages using a macro and would like to set the layout to full-width. by default it is set to fixed width and a user has to enter page edit mode and click the button ‘make page full-width’. ↔︎
[image]
is there a way to control the layout when creating a page using the api?
see also
[co…](https://jira.atlassian.com/browse/confcloud-65654) | make layout full-width when creating page | atlassian.com | 2021.25 | [
{
"text": "this is possibly the missing piece: <https://jira.atlassian.com/browse/confcloud-65654>\n\nfor those wondering if full-width is possible through the api, it seems that it is possible through the properties endpoints ([here](https://developer.atlassian.com/cloud/confluence/rest/api-group-content-properties/#api-api-content-id-property-post)) and when you create new content ([here](https://developer.atlassian.com/cloud/confluence/rest/api-group-content/#api-api-content-post)) though the documentation for the create c…",
"name": "",
"is_accepted": true
}
] |
3c6ae215ccb94ea280b65f2de5d13966 | hi,
we are developing a jira addon that requires another jira addon to be installed.
when i start up my jira instance during development, using atlas-run, i get a bare-bone jira. now i have to manually add the additional plugin i depend on via the admin panel.
can i somehow automate the process o… | how to start jira with the sdk with additional plugins preinstalled | atlassian.com | 2021.17 | [
{
"text": "found the solution to this problem:\n\nsee pluginartifacts here:\n\n<https://developer.atlassian.com/server/framework/atlassian-sdk/amps-build-configuration-reference/>",
"name": "",
"is_accepted": true
}
] |
578257bac215fe0db009fe78fc5c8f39 | hi!
i’m trying to add some comments to a pr via the v2 api. i’ve been looking at other threads such as [this one](https://community.atlassian.com/t5/bitbucket-questions/bitbucket-cloud-rest-api-v2-0-commenting-on-pull-requests/qaq-p/847107), but no such luck. i’ve been able to use the api for looking up and deleting comments, but nothing seems to work for posting new comments. here is an example of what i’m seeing when i … | can't create comment on pull request via api | atlassian.com | 2019.51 | [
{
"text": "hi [@bennelson](/u/bennelson),\n\ni think your error is because of wrong quotes.\n\ntry replacing the body content with this (i swapped the \" and ');\n\n-d '{\"content\": {\"raw\": \"your comment\"}}'",
"name": "",
"is_accepted": true
}
] |
b692f9f7e5f9c713db93d90b4fd78f31 | hi, is it possible to determine if a user is a service desk agent. i see that there is a jira-servicedesk-users group but i’m not sure how bullet proof this is
thanks
paul | is a user a service desk agent | atlassian.com | 2021.17 | [
{
"text": "here’s some code we use to try and get the organizationservice, maybe it helps:\n\nimport com.atlassian.jira.component.componentaccessor;\n\nimport com.atlassian.plugin.osgi.container.osgicontainermanager;\n\nimport com.atlassian.servicedesk.api.organization.organizationservice;\n\nimport org.osgi.util.tracker…",
"name": "",
"is_accepted": true
}
] |
def5e5cf61ad25b7745ead763ad91ab8 | one category of codegeist 2021 is apps for it. however, as i understand, forge currently doesn’t support jira service management which is the primary it solution from atlassian. a majority of it apps on atlassian marketplace work with jsm too. so, will this heavily limit the scope of apps that can b… | doubt regarding a codegeist category | atlassian.com | 2021.39 | [
{
"text": "we’ve definitely heard from a number of folks that they want jsm support on forge and it sounds like we’re investigating how to get it done:\n\n[image]\n\n[resolution & jexo forge hackathon findings](https://community.developer.atlassian.com/t/resolution-jexo-forge-hackathon-findings/49541/27#no-support-for-jira-service-management-5) [forge](/c/forge/45)\n\nwave - i am adarsh, product lead for forge. i recently joined the forge te…",
"name": "",
"is_accepted": true
}
] |
a7e6b0f6524946c76e4fffaa8917e787 | can’t login to atlassian marketplace even though the incident has been resolved. | atlassian marketplace not available | atlassian.com | 2020.34 | [
{
"text": "what do you mean when you say can’t login?\n\ndo you see an error?\n\ncan you remove all cookies from [atlassian.com](http://atlassian.com) or *.atlassian.com and try again?",
"name": "",
"is_accepted": true
}
] |
42ac8084724b1fcb04df7c5b2c910703 | hello everybody,
i need some way to get new users automatically onboarded and started to play around with the jira cloud rest api but i need some help to get started.
so i need to get authenticated first to send api requests via rest, i’ve already generated an token for that. and i’ve found the ri… | rest api startup-help - create user | atlassian.com | 2021.17 | [
{
"text": "hi ulrich,\n\nyou have to send the authentication information for each request you are performing. this means for your second request you have to add -u [email protected]:api\\_key \\ as well. does this work for you?\n\nplease take care about this deprecation notice for jira cloud regarding cookie based auth…",
"name": "",
"is_accepted": true
}
] |
26c6e08cfb0aa4b52f11ccfe02ed1ca8 | a simple pre-receive hook (blocking all commits+push) is not invoked when the bitbucket built-in editor is used. any change can be committed and is added to the respective ref/branch regardless of the pre-receive hook presence.
a push from a git cli invokes the pre-receive hook and the push is reje… | pre-receive hook not invoked when bitbucket file editor is used | atlassian.com | 2021.17 | [
{
"text": "yep! if you take a look at the ‘global hooks’ section of the [docs](https://developer.atlassian.com/server/bitbucket/how-tos/hooks-merge-checks-guide/) you will see:\n\nthis can be achieved by adding the configurable=\"false\" attribute to the repository-hook element in atlassian-plugin.xml\n\nglobal hooks are always triggered, and your plugin can decide whether or not to reject eac…",
"name": "",
"is_accepted": true
}
] |
dc09f272b9412c24dfe8e4a2f172933a | i’m looking at using a heading-less single-select drop-down list component with hasautocomplete enabled but have discovered the following 4 unexpected behaviours:
on the component demo area for the with autocomplete example using keyboard only…
selecting anything from the city section then tryin… | atlaskit single-select component - unexpected or buggy behaviour | atlassian.com | 2021.17 | [
{
"text": "it will be quite similar, you can have a look there: <https://ak-mk-2-prod.netlify.com/mk-2/packages/elements/select>",
"name": "",
"is_accepted": true
}
] |
535d9a1e8f249c95ebe05faa50c7ae4b | the [docs about the app descriptor](https://developer.atlassian.com/cloud/confluence/app-descriptor/) have this to say about the apiversion field:
the intention behind the api version is to allow vendors the ability to beta test a major revision to their connect app as a private version, and have a seamless transition for those beta customers (and existing custome… | major new app revision with base url change | atlassian.com | 2019.43 | [
{
"text": "not sure about the api version, but we switch the base url between releases. \nfor example: [app-server-1.mydomain.com](http://app-server-1.mydomain.com) for the current release, and next release might be [app-server2.mydomain.com](http://app-server2.mydomain.com). \nwe can host the next release of the app whoever app-server2 is, put the new version in the marketplace …",
"name": "",
"is_accepted": true
}
] |
cd10b9117a5856060bb07938186abe85 | i’m new and developing a new plugin for bitbucket server, trying to load javascript using web-resources but can’t see it loaded in console log of browser. any help is appreciated.
<!-- atlassian.plugin.xml -->
<web-resource key="pcc-plugin-resources" name="pcc-plugin web resources">
<dependenc… | cant load javascript | atlassian.com | 2021.21 | [
{
"text": "you can find the docs for dialog2 here: [dialog2 - aui documentation](https://aui.atlassian.com/aui/6.0/docs/dialog2.html)\n\nas for adding the click event, i think you should try wrapping the js code with ajs.toinit e.g.:\n\najs.toinit(function() {\n\najs.$(\"#dialog-show-button\").click(function(e) {\n\ne.preventdefault();\n\najs.dialog2(\"#demo-d…",
"name": "",
"is_accepted": true
}
] |
d7061a9f75371da601cf5d39b903dbc6 | this is my first time creating an atlassian connect express app so please excuse any noobness and correct me if i’m mis-stating or misunderstanding anything.
i created a very basic nodejs app using [ace](https://bitbucket.org/atlassian/atlassian-connect-express/src/master/) to sync jira’s description field with custom fields that i added (“story description” and “bug de… | unable to "send a signed outbound http request back to the host" | atlassian.com | 2021.17 | [
{
"text": "figured it out! huge thanks to you [@osiebenmarck](/u/osiebenmarck)!!\n\nregistering the webhooks via the app descriptor was what allowed the authentication data to be passed through (ie. don’t register webhooks for connect apps via the ui).\n\nthe issue it didn’t work in the last pass was because ace doesn’t like null va…",
"name": "",
"is_accepted": true
}
] |
a6623bd857b57b11e7f06407a6c5b07b | hi,
we are trying to set up a jira data center using the following aws quick start:
[image]
[jira on aws - quick start](https://aws.amazon.com/quickstart/architecture/jira/)
learn about the quick start architecture and details for deploying jira products in the aws cloud.
the infrastructure seems to set up fine and… | setting up jira dc on aws - quick start fails | atlassian.com | 2020.05 | [
{
"text": "for everyone passing by here,\n\nwhat oleksandr writes is basically right. but i’d like to add, that we did the same thing already 2 or 3 times before. from our perspective it looks like the problem was tied to the aws region used to run the stack: we had set up the above mentioned stack several times…",
"name": "",
"is_accepted": true
}
] |
777b71bc6b740472139ab626979758ea | hi everyone,
for those using yellowfin - has anyone had success connecting it to jira cloud? i’m attempting to use the json connector along with an atlassian authentication token but all i can ever see is the basic json response - the same i would see if i weren’t authenticated.
i’ve asked on the … | connecting jira cloud to yellowfin | atlassian.com | 2021.17 | [
{
"text": "thanks for the reply. i’ve figured it out. the problem i had was that i wasn’t sending the auth token encoded correctly. a second set of eyes here helped me solve the problem.\n\nthanks,\n\n-tim",
"name": "",
"is_accepted": true
}
] |
9eaf8ab56b37759916d5db5d827a1c66 | i’m trying to execute dashboard item example given at, [bitbucket](https://bitbucket.org/atlassianlabs/atlassian-connect-jira-dashboard-item-example)
i have cloned to to my local drive and using visual studio code to debug.
when i ever i start node app.js, it gives following error,
add-on server running at http://sg-dt-094:3000failed to establish local tunnelerr = error: panic: r… | atlassian-connect-express: "runtime error: invalid memory address or nil pointer dereference" | atlassian.com | 2021.17 | [
{
"text": "you don’t need to include ac.store.register(‘jugglingdb’, require(‘jugglingdb-sqlite3’)); into your app.js file, also i’d suggest you using sequelize since jugglingdb is not maintained (last commit 1 year ago).",
"name": "",
"is_accepted": true
}
] |
8a63a9e52b5b61c28b23d535768c56d6 | hi,
i have an app which uses atlassian-cache-api in version 4.0.0. i’ve observed this problem for a confluence and for a jira app. upon installing a new version, uninstall, or deactivating the app the whole instances dies. i see errors like the following:
confluence-7.3.3 | exception in thread "co… | atlassian cache crashes confluence/jira upon app disable | atlassian.com | 2020.29 | [
{
"text": "ok, i’ve documented my complete findings on cache-240, but in a nutshell, you can fix this by either:\n\n(preferred) importing the public cachefactory api rather than the internal cachemanager interface, or if that’s not possible for some odd reason,\n\nset destroymethod = \"\" on the @bean annotation for…",
"name": "",
"is_accepted": true
}
] |
ad612758a9d7d6cba424286b337913a2 | i hope that this php source code example helps atlassian developer communtiy. see at below:
<?php
class lifecyclecontroller extends zend\_controller\_action
{
public function init()
{
/* initialize action controller here */
}
public function predispatch(){
$this->\_hel… | i hope this php source code example helps atlassian developer community | atlassian.com | 2021.21 | [
{
"text": "thanks for the post [@matti.kiviharju](/u/matti.kiviharju)! we don’t get enough [php](https://community.developer.atlassian.com/tag/php) examples around here.",
"name": "",
"is_accepted": true
}
] |
a97d1394fdfe49f23ce8c4f99a8c0fec | i am trying to find a way to navigate from a forge issue glance to the issue navigator within jira and pass the jql parameter: basically, go to /issues/?jql=${myjql}
here are the things i have tried:
1. use a button
i would have preferred to have a forge ui button with link appearance, but i have… | how to navigate within a product? | atlassian.com | 2021.04 | [
{
"text": "hi [@tbinna](/u/tbinna),\n\nthanks for bringing this up. your example for format=\"markup\" should work, but it looks like we’ve recently introduced a regression. sorry about that!\n\nwhile we work on fixing that up, you should be able to use markdown format with template strings like so:\n\nconst issuekey = 'issu-234…",
"name": "",
"is_accepted": true
}
] |
19d7387d45f43e2407239c4932643062 | the jira and confluence schemas linked to from <https://developer.atlassian.com/cloud/jira/platform/app-descriptor/> are missing…
specifically <https://developer.atlassian.com/static/connect/docs/latest/schema/confluence-global-schema.json> and [https://developer.atlassian.com/static/connect/docs/latest…](https://developer.atlassian.com/static/connect/docs/latest/schema/jira-global-schema.json) | app descriptor schemas are missing | atlassian.com | 2021.17 | [
{
"text": "hi [@jbevan](/u/jbevan),\n\nthe schemas are back up and the links on that page are now pointing to the right location. the new locations for the schemas are:\n\n<https://bitbucket.org/atlassian/connect-schemas/raw/master/confluence-global-schema.json>\n[https://bitbucket.org/atlassian/connect-schemas/raw/master/jira-gl…](https://bitbucket.org/atlassian/connect-schemas/raw/master/jira-global-schema.json)",
"name": "",
"is_accepted": true
}
] |
b070b0405805d50aba8ef7917e44be5f | hi, i am trying to develop a filtering table using the [atlaskit dropdownmenu component](https://atlaskit.atlassian.com/packages/core/dropdown-menu) as the filter(s). the documentation is fairly good, but doesn’t really describe how to get the state of the dropdownmenu or handle when it changes. how can i update state when something has been selected? just … | atlaskit dropdownmenu: how to manage state? | atlassian.com | 2019.43 | [
{
"text": "hey [@gregtaylor](/u/gregtaylor), have a look at this example i made for you: <https://gist.github.com/birox/0eb7332478dcb314508f6a6ba2c5b931> \nyou’d use the onclick attribute to trigger a function and send the current selection object. that function will sit above the render declaration but within the react class. th…",
"name": "",
"is_accepted": true
}
] |
699cd407339bb4e00f24349e8bbe0283 | hi, community.
when i am trying to get the user timezone using /rest/api/2/myself from the browser, i am getting the timezone set in user profile but when i hit the same api from our app using ap, i am not getting the timezone which is set in user profile, instead, i am getting the default user tim… | /rest/api/2/myself api not working as per documentation | atlassian.com | 2021.17 | [
{
"text": "i think a user can set the privacy of timezone due to the new privacy controls put in place due to gdpr. see this page to see if this is related <https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/>",
"name": "",
"is_accepted": true
}
] |
7138abf3243c4cf40818368411fea6fe | hello,
i have been using a custom jira add-on for a while now but i needed to move it to another server,
i have unisntalled the previous addon and when i try to upload the new atlassian-connect.json with new url
all i get is:
the add-on host returned http response code 500 when we tried to conta… | cannot move my jira add-on to new host - error 500 | atlassian.com | 2021.17 | [
{
"text": "the error message:\n\n[image] erwan:\n\nthe add-on host returned http response code 500 when we tried to contact it during installation. please try again later or contact the add-on vendor.\n\nseems to indicate that there is an error thrown from your app. my guess is that the /installed hook isn’t co…",
"name": "",
"is_accepted": true
}
] |
1c89dde83a6e1138ea1159e42e0ea0b8 | hi folks,
apologies if this is the wrong channel. i’m new to both this community and jira, but i need to add support for jira to an existing app. it will both make unsolicited requests to jira (creating issues, changes to issues etc) and receive webhook calls from jira (creating issues, changes to … | jira authentication query | atlassian.com | 2021.17 | [
{
"text": "hi ken.\n\nit sounds like you need to create a connect add-on; which includes webhooks functionality. this primarily uses jwt for auth to call jira apis and webhooks.\n\nconnect add-ons must be installed by the admin of the jira site and act as a service user; i.e. they have their own user.\n\nconnect add…",
"name": "",
"is_accepted": true
}
] |
e722ecdf534849f9662c468f35827463 | to factorize the code between our jira server addon and our jira cloud addon, i used to provide ihm via an iframe in jira server addon like for jira cloud addon. it’s working very much. but this time, i need to use ap request and i didn’t find documentation to do that.
is it possible to use ap requ… | is it possible to use ap request via an iframe in a jira server addon? | atlassian.com | 2021.17 | [
{
"text": "unfortunately no. ap.request relies on the connect plugin being installed. the connect plugin only works in jira cloud.\n\nyou could replicate something similar. ap.request is just a wrapper around some cross domain ajax. if your iframe is on the same domain as the jira server instance you could do so…",
"name": "",
"is_accepted": true
}
] |
2c7dbfdc2a362b20a4f5c597901f5fa5 | i uploaded a private version of a new app for jira server to atlassian marketplace. now i would like to share this private version with a few customers so they can test it. is there any way to do this for jira server without making the app public?
one way would be to share the obr with testing cust… | how to share private marketplace app version for jira server? | atlassian.com | 2021.17 | [
{
"text": "private listings are there for the vendor only. i would suggest going the distribution of the jar yourself.\n\nif this is a new version - they can get a license from the current app listing. if it’s a new version - you’re kinda on your own… in the past i’ve added time bomb functionality to apps to han…",
"name": "",
"is_accepted": true
}
] |
4ccb8d474d0d0f8291960d187db2f0ef | hi
the forge macro in confluence seems to always need a manual refresh of the page by the user. however, there is no hint to the user that they have to do it.
this is what happens:
the ‘allow access’ authorization dialog is show. everything is ok:
[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/0/8/080578ff4110278823607d55ad543b1f6aed70c7.png "image")
when the user clicks it, a new tab… | forge macrho 'app authorization' needs manual refresh of confluence page | atlassian.com | 2021.43 | [
{
"text": "hi [@romanstoffel](/u/romanstoffel),\n\nthis issue should now be resolved.",
"name": "",
"is_accepted": true
}
] |
c780e8bad8bde86434ec0127e3b4aa73 | hello community,
we would be happy if someone clarify for us the behavior of life cycle events:
<https://developer.atlassian.com/cloud/jira/platform/connect-app-descriptor/#lifecycle>
when a user installs an app from the marketplace the following events are fired:
installed
enabled
in this case … | lifecycle events in case of site rename and major changes | atlassian.com | 2021.39 | [
{
"text": "hi [@attila.bordas](/u/attila.bordas) ,\n\nhere are the answers to the case 2 questions:\n\nq: which events are fired automatically by the marketplace and when?\n\na: each site, approximately every 6 hours, checks the marketplace for new app versions. if the app version does not require manual approval (i.e. it has no chang…",
"name": "",
"is_accepted": true
}
] |
7855f2e2c991dba8a671db6621ce33ea | like many, if not all, vendors we rely on the source code for jira, confluence, bitbucket and bamboo server/dc to build our apps. the docs are not sufficient and never could be, especially with atlassian’s focus on cloud. let me be clear, today we cannot build our apps without access to the source c… | access to atlassian application source code | atlassian.com | 2021.04 | [
{
"text": "hi [@jmort](/u/jmort). we are committed to continue providing developer access to the server/on-prem source code, and licenses for that matter, into the future. we’re actively exploring/working toward a solution/processes, both for the immediate term and long term. we’ll share more details over the next couple …",
"name": "",
"is_accepted": true
}
] |
a3cfcbda531135f4755136169f2f346e | per the [web section docs](https://developer.atlassian.com/cloud/jira/platform/modules/web-section/):
to insert the links themselves, see the web item module.
however, simply setting the location of the web item to the key of the web section does not work, as far as i can tell.
example atlassian-connect.json:
{
"key": "my-cool-addon",
// etc etc
"modules":… | how to associate web items with a web section? | atlassian.com | 2021.17 | [
{
"text": "hi [@mitch](/u/mitch),\n\nthere are no supported locations on the issue view page for web sections. you can add multiple web items to any of the locations listed for the ... menu, or you can add a button by declaring a web item with the location jira.issue.tools, or you can add a panel in either of the locations …",
"name": "",
"is_accepted": true
}
] |
bcfec28780a0b43b8e34ade9d992ae43 | is there a way to find out if a cover image is assigned on a jira issue? if not, can i assign one from an image attachment? i searched the jira rest api v2 docs and came up empty.
i can check for attachments and maybe identify if one is an image and make an assumption. i don’t think that will te… | is there a jira api call that will tell me if a cover image is assigned to an issue? | atlassian.com | 2021.39 | [
{
"text": "hello [@mkflyer](/u/mkflyer)\n\nin a short answer, no. there is currently no rest api endpoint that will tell you if any attached image has been set as the cover image, the web gui is currently the only method. maybe you might like to raise it as a feature request.\n\nalso, your question is tagged with jira cloud, bu…",
"name": "",
"is_accepted": true
}
] |
3bedc6b0c6dad71851731e71548d7b54 | hi,
it seems the “requestjira (<https://developer.atlassian.com/platform/forge/custom-ui-bridge/requestjira/>)” method from bridge does not support “post” method.
i made a simple request from my custom-ui to '/rest/api/3/search', 'post' but got:
[screenshot 2021-07-27 at 17.53.09]
the link in the … | it seems the "requestjira" method from bridge does not support post method | atlassian.com | 2021.39 | [
{
"text": "hi,\n\nhttp 415 is usually about the content-type header. if you are setting custom headers maybe it is overriding the default: 'content-type': 'application/json'. if you are not already, i would try adding this to your headers.",
"name": "",
"is_accepted": true
}
] |
baea36724e373c1ed1c19bfe2a96b211 | my current prod app is using aui v8.5.1. decided to update to the latest libs v9.4.0. i have updated all css/js unpkg links but the final link breaks my tabs–meaning 8.5.1 tabs i can switch between the tabs and it remembers that last tab accessed, but when i change to 9.4.0 it defaults to the primar… | aui tabs stop working | atlassian.com | 2021.31 | [
{
"text": "i was able to resolve the issue.\n\nin my layout.hbs file (i used atlassian-connect-express for this app), for some reason i had duplicate reference lines for link and script tags. once i removed the duplicate lines, everything started working using aui 9.4.0.\n\nnot entirely sure how it’s been working …",
"name": "",
"is_accepted": true
}
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.