id
stringlengths 32
32
| text
stringlengths 0
895k
| name
stringlengths 0
33k
| domain
stringlengths 5
44
| bucket
stringclasses 19
values | answers
list |
---|---|---|---|---|---|
454fac043c8ba7fbb4215bd1f6effb66 | hi,
i hope this time, the “community” will not mark my post as spam?
we use client.js to access trello api, and both available links from the documentation are no longer working since this morning.
i will not post the links, because that may be the cause of my post being marked as “spam”, but the… | client.js no longer available | atlassian.com | 2020.50 | [
{
"text": "[image]\n\n[allowing an app to use the trello api stopped working](https://community.developer.atlassian.com/t/allowing-an-app-to-use-the-trello-api-stopped-working/42709/9) [trello](/c/trello)\n\nboth <https://trello.com/1/client.js> and <https://trello.com/1/client-unminified.js> are back.\n\nthere were a few hours where client.js was not served from trello.com/1/, unfortunately. we are working on maki…",
"name": "",
"is_accepted": true
}
] |
2a3904a95973da1c9388e86c3c5bf180 | hi, i’m developing a plugin. so i created a string field which by vm on edited i push a select class, and offer some options accessing to the ao by rest with jquery, i need to access to the reporter with the ajs and get the id of the reporter with the ajs is this possible? | creating custom field based reporter | atlassian.com | 2020.05 | [
{
"text": "hi, we solved send the reporter by the velocity to the function with the next form\n\ngetmyoptions(\"$!{issue.reporter.name}\", \"$!{issue}\")\n\nalso on the js we can get the value on the form with this line:\n\nreporter = $(\"#reporter\").val()",
"name": "",
"is_accepted": true
}
] |
8d7910ce7084b2433f495e76f4b7a9cc | i looking for a way to find if the knowledge base is linked to a confluence space through the jsm cloud rest api. i was not able to find a suitable api in the docs, is there any workaround for this? | getting jsm knowledge base linked to a space data in the jsm rest api | atlassian.com | 2021.17 | [
{
"text": "[@karthikeyan](/u/karthikeyan),\n\nit looks like that’s pretty straight forward with get /rest/servicedeskapi/knowledgebase/article that [get articles](https://developer.atlassian.com/cloud/jira/service-desk/rest/api-group-knowledgebase/). the payload returned is a list of articles with the right parts to know about confluence:\n\n{\n\n...\n\n\"values\": [\n\n{\n\n\"title\": \"stolen computer\",\n\n\"excerpt\":…",
"name": "",
"is_accepted": true
}
] |
8c9ed2295b49dde453c7d7c568296b84 | hello everybody, does anyone knows if trello logo is redesigned or just the classic one is on atlassian.design
thanks a lot! | trello logo on svg format | atlassian.com | 2021.17 | [
{
"text": "hi [@miguel.ortigueira](/u/miguel.ortigueira) ,\n\nthe trello logo on atlassian.design is the one to use! the trello logo using the new atlassian logo style is only to be used when grouped with the rest of the logo family.\n\ncheers,\n\nlucy",
"name": "",
"is_accepted": true
}
] |
69e4673894c6262c6af41508ffb48a62 | i noticed that recently (2018-01-22?) jira stopped sending the referrer header when calling cloud add-ons. for example, when my add-on page is at <https://acme.atlassian.net/plugins/servlet/ac/my-page?foo=bar>, the url used to be included in the “referer” http header when calling the connect add-on.
i… | what happened to referer header? | atlassian.com | 2021.17 | [
{
"text": "as server side fix we use [custom context parameters](https://developer.atlassian.com/cloud/jira/platform/context-parameters/) however they are available for page modules only. for webpanels you could use some hack with ap.getlocation",
"name": "",
"is_accepted": true
}
] |
6627cf2eb59ecb8278191bbcd67182bd | my organisation has a very simple requirement.
we want to grab all data from jira cloud, like issues from all projects and so via rest api (not webhook) using our custom python script.
there are several authentication mechanism, basic auth, oauth2, connect , forge etc. i’m more than super confused… | which authentication method to use for machine to machine access? | atlassian.com | 2021.43 | [
{
"text": "hello [@muhammadusman](/u/muhammadusman)\n\nthere is no single answer, as there is always a ‘person’ involved, since authenticating to the rest api requires a user’s credentials. the only difference is that oauth is meant for applications that will present that user, a real person, with an interface to approve the applic…",
"name": "",
"is_accepted": true
}
] |
60cdc493710bc254088a6e653d18b565 | hi,
i’m working on creating a bitbucket plugin to enforce a naming scheme for branches which i realise is not really how git is meant to work but it’s a requirement from a team at my company. as part of it, i’m writing a class to validate any jira id’s that are in the branch names.
to do this i’m … | using entitylinks to query jira data from a bitbucket plugin | atlassian.com | 2021.17 | [
{
"text": "almost. you’ll want to use the applicationlinkservice: <https://docs.atlassian.com/applinks-api/3.2/com/atlassian/applinks/api/applicationlinkservice.html>\n\nthen in it get the appropriate applicationlink (in your case i’m guessing that it’s going to be all of the jira instances - so look at [https://do…](https://docs.atlassian.com/applinks-api/3.2/com/atlassian/applinks/api/applicationlinkservice.html#getapplicationlinks(java.lang.class))",
"name": "",
"is_accepted": true
}
] |
6d7fa61769a76313115ebe2bb18528a4 | hey everyone,
i have a plugin that creates a new page via /rest/api/content. this is the body data:
const bodydata = `{
"title": "${newpagetitle.value}",
"type": "page",
"space": {
"key": "${context.confluence.space.key}"
},
"ancestors": [
{
… | editing pages created via /rest/api/content | atlassian.com | 2020.10 | [
{
"text": "if anyone is interested, the solution is to set metadata.property editor to “v2”.\n\ni’ve done it in the success function of ap.request that creates a new page (post to /rest/api/content) since the response from that call includes the id of the newly created page. check out [create content property res…](https://developer.atlassian.com/cloud/confluence/rest/#api-api-content-id-property-post)",
"name": "",
"is_accepted": true
}
] |
e69f242e6d1ad248154927758db29c3d | hello team,
we are developing a bamboo plugin for post deployment, we have developed many plugins in the past and never faced the similar issue.
we are seeing
could not execute task no plugin with key 'xxxx' is installed.
the plugin works fine locally as well on the trial docker container but f… | bamboo plugin error only on remote "could not execute task no plugin with key is installed" | atlassian.com | 2021.21 | [
{
"text": "managed to solve this problem as following:\n\nthis error wont show up with local agents, but only with remote agents. so instead of testing using atlassian-sdk, i debugged it locally using bamboo server and agent docker images.\n\nthe issue is with the dependency applicationproperties, i wasnt using th…",
"name": "",
"is_accepted": true
}
] |
05180b04b099c0b8af666db70aacb151 | we’ve noticed only rich text macros have their macro icon displayed when viewing them in the editor. plain text or unbodied macros have a default black icon.
is this a bug or is it intended ? | macro icons missing in editor | atlassian.com | 2021.31 | [
{
"text": "hi [@tonygoughadaptavist](/u/tonygoughadaptavist) ,\n\nthis seems like a regression from the legacy editor.\n\nlegacy editor:\n\n[[v1-editor]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/6/f/6f26beb4ea14e152253ad20cd7ad770540e32f98.png \"v1-editor\")\n\nnew editor:\n\n[[v2-editor]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/d/c/dc04dbd1a25f580433caf9ee716a56ec066caad2.png \"v2-editor\")\n\nif you want to reproduce this, install <https://dx-macro-icons-app.glitch.me/connect.json>. the code is [here](https://glitch.com/edit/#!/dx-macro-icons-app?path=connect.json%3a13%3a48).\n\nperhaps there’s a reason for this change in behaviour…",
"name": "",
"is_accepted": true
}
] |
eaa8d7a1d7a51648ce8fc0ee34cf5e49 | hey,
we’ve created a custom field type in forge and everything works regarding the functionality. however, when adding a new field through native ui, the type of the field is unknown, simply shown as ?.
i’ve noticed the same issue exists on connect so it’s probably the same limitation.
is there a… | customfieldtype type when creating new field | atlassian.com | 2021.43 | [
{
"text": "thanks for clarifying.\n\nwe’re working on it. it’ll show the custom field type.",
"name": "",
"is_accepted": true
}
] |
de5d73da56382ad1fcc8734d280db8bb | i’m working on addon using web panels in “org.bitbucket.pullrequest.overview.informationpanel”. addon will be added for whole team. thing i want to achieve is that content displayed for pull request author and reviewer will be different.
jwt token that i’m getting on my backend url for fetching pan… | getting current user id in team installed addon | atlassian.com | 2021.17 | [
{
"text": "i realized that i can pass current user id by url in secure way, because of qsh claim in jwt :slight\\_smile:",
"name": "",
"is_accepted": true
}
] |
2023266d75e0fdf125943d0729009123 | hi,
i use a private addon hosted with ace behind apache, mapped to a subdirectory, i.e., [example.com/path/](http://example.com/path/).
i intend to add a second addon on the same server at another path ([exampel.com/newpath/](http://exampel.com/newpath/). i’m sure i can spin up a second ace instance on a different port and all will be well. however, i’d … | multiple addons on one host best practices | atlassian.com | 2021.17 | [
{
"text": "i would use multiple instances of ace: one for each atlassian app. this would mean that, should one app malfunction, the other will be unaffected. this is a desirable characteristic. i would also make it so that you keep the apps as separate as possible and, if they need to communicate or share data…",
"name": "",
"is_accepted": true
}
] |
18df465d9ed6479001fb7a12c469b030 | hello developer community!
i’m newer here and am following the atlassian plugin tutorial. i was able to successfully create a plugin that makes postfunctions. i’ve started development on another portion of the plugin that creates an event listener via the tutorials but am getting dependency errors.… | jira event listener com.springframework... errors following tutorial | atlassian.com | 2021.17 | [
{
"text": "solved my issue! had to add this to the amps portion of the pom.xml:\n\n<extractdependencies>false</extractdependencies>",
"name": "",
"is_accepted": true
}
] |
b50027ead065864dea35a129c73a120a | tl;dr: is it safe to use post route to /installed in add-on based on atlassian-connect-express?
what i’m trying to achieve: i want a place where i can setup default configuration for client that installed add-on, i need different entries in db for different clients, so /installed looks like a place… | /installed lifecycle in ace | atlassian.com | 2021.17 | [
{
"text": "hi [@alexter\\_pr](/u/alexter_pr),\n\nit doesn’t look like this is documented at all, but atlassian-connect-express emits an event on successful installation: host\\_settings\\_saved. see [lib/index.js](https://bitbucket.org/atlassian/atlassian-connect-express/src/e8e6a7a70e06ef68b557e21046e35988d1141b24/lib/index.js?at=v2.1.3&fileviewer=file-view-default#index.js-148).",
"name": "",
"is_accepted": true
}
] |
cd5dde07c629b3a02658c9e14919c7fc | i’m writing a script listener using scriptrunner that accesses an issue’s associated sprint (and subsequently its goal field) and then uses it to make a put request to that same issue to update a custom “goal” field. however, it’s failing because of how i’m trying to access the issue.
if i’m unders… | having issue's accessing an issue's sprint's goal field in scriptrunner | atlassian.com | 2021.17 | [
{
"text": "nevermind, didn’t realize that the sprint field is a custom field and is referred to as “customfield\\_{id}”",
"name": "",
"is_accepted": true
}
] |
c1df4d048080c7567ad0595241fdc72b | hi, i’m wondering if there is a way to use whitelisting in spring boot as it is implemented in express (<https://bitbucket.org/atlassian/atlassian-connect-express/src/master/>)
“whitelist”: [
“.jira-dev.com",
".atlassian.net”,
“*.jira.com”
]
basically i want to restrict access to descriptor from… | restrict access to add-on descriptor only to *.atlassian.net host | atlassian.com | 2021.17 | [
{
"text": "hi [@glib.briia](/u/glib.briia),\n\nno, i’m afraid that is not currently supported. the framework handles the installation callback for you, so i’m not sure how you would go about adding it. feel free to raise a feature request in [acspring](https://ecosystem.atlassian.net/browse/acspring).\n\ncheers,\n\neinar",
"name": "",
"is_accepted": true
}
] |
5611e1d46c3ebd9cc4de2ee45c0a04c1 | we built our server app and are about to build a cloud version. will they both share the same app license or is a different app license required for each version (server vs cloud)? i ask because i know the app license can’t change once it’s been set. currently, it is llc.api.server.decisions-for-jir… | app license - different for server and cloud? | atlassian.com | 2020.05 | [
{
"text": "just checked with the marketplace team to confirm. if you want the cloud version to be on the same listing as the server version (which i assume you do) then you definitely want to keep the same app key.",
"name": "",
"is_accepted": true
}
] |
b466e419c487e0945d99f86997811db7 | hello,
i’m trying to create a jira plugin with the sdk (atlas-create-jira-plugin), but i got 2 problems :
the sdk tries to access to [google-analytics.com](http://google-analytics.com) and to analyze the groupid i tell it, and then it fails because it can’t access this url
the sdk fails because it loses the groupid
what can i… | atlassian sdk 8.0.16 | atlassian.com | 2021.17 | [
{
"text": "hello,\n\nthanks for your answer.\n\nthe command line option -dallow.google.tracking=false works fine for me.",
"name": "",
"is_accepted": true
}
] |
4768399b406dcc8488ce0a4e76c38252 | hello,
i have created a macro which provides a web form. this is defined in a velocity template. i have some supporting functions in javascript. i have no problems calling the js if i include it inline with my velocity template via . the issue is when i segregate it into it’s own file, it appea… | define javascript in a web-resource and use in velocity template | atlassian.com | 2021.17 | [
{
"text": "hi [@acalantog](/u/acalantog),\n\nit is after. i was never able to access the velocity variable directly from the js web-resource but did work around by setting and getting meta data variables.\n\nhere’s a snippet:\n\nwebform.vm\n\n#putmetadata(\"submitdatemeta\", $webformmacroobject.getproperty(\"submitdate\"))\n\ncreateinitia…",
"name": "",
"is_accepted": true
}
] |
22f0672c279cbe151aa2266f6ba494f8 | i’m struggeling with the [aui form-validation](https://docs.atlassian.com/aui/latest/docs/form-validation.html) on dynamical fields. for example there is a selectbox where one can choose a basic-type. the change-event of this selectbox is connected with 3 other selectboxes which are shown and hidden (using jquery), depending on the selection of the main selectbox (… | how to handle aui form-validation with dynamic fields? | atlassian.com | 2021.17 | [
{
"text": "as far as i see it is not suposed for doing dynamic stuff - register the validation stuff for the form exactly one time, submit the form, validation gets “lost” because of the rerendering…\n\nin order to “abuse” the functionality i did a quick an dirty workaround: each time the main select box changes…",
"name": "",
"is_accepted": true
}
] |
7d8e5dd098bc515ed37d6d72e3ac23de | i’ve recently realized that each time i uninstall and reinstall the same plugin with updated logic, the old one still runs. let’s say in the issueupdate event listener i have the following piece of code:
system.out.println("hello world");
and then i change it to
system.out.println("weird worl… | jira plugin cache problem | atlassian.com | 2021.17 | [
{
"text": "try something like this:\n\npublic class foo implements initializingbean, disposablebean {\n\nprivate final eventpublisher eventpublisher;\n\npublic foo(eventpublisher eventpublisher) {\n\nthis.eventpublisher = eventpublisher;\n\n}\n\n/** called when the plugin has been enabled */\n\n@ove…",
"name": "",
"is_accepted": true
}
] |
2a49e08d1d23a03d1812757e75fcb1fe | hi guys.
i would like to know if there is any way to read the contents of a file located on a remote repo on bitbucket from a node.js script.
appreciate any help as i’m new to bitbucket. :slight\_smile: | how do you read a file on bitbucket using a node.js script? | atlassian.com | 2021.17 | [
{
"text": "you should be able to do this using <https://www.npmjs.com/package/bitbucket> (api documentation can be found here: <https://bitbucketjs.netlify.com>)",
"name": "",
"is_accepted": true
}
] |
936cbc0c38c8b1432430effc8f8f0b1e | hello experts,
i want to use rest api url /rest/api/2/user/picker for one user picker field, so firstly, i tried to just fire the rest url in a browser, it is working but it is not returning avtarurl attribute. as per the [documentation](https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-user-picker-get), i should get that, right?
[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/9/5/95b82b340ee9c4e07aa5d3bc28474321bfa75480.png "image")
please let me know if i … | not getting avatarurl after using rest api /rest/api/2/user/picker | atlassian.com | 2021.17 | [
{
"text": "you only get it if you request it with showavatar=true as query param.",
"name": "",
"is_accepted": true
}
] |
df0056e85dd4ad9bc36275bf44e53915 | i’m trying to modify an issue, but getting a permission error when i pass null as the user. however, i can’t pass a valid user in, since i’m not running in a context where there is a user (basically a cron job). there isn’t any particular user who can be said to have ‘performed’ the action, so i’d r… | modify issue without a user | atlassian.com | 2021.17 | [
{
"text": "issueservice (and most of the other *service) enforces permissions (and other validations). in this case it’s that anonymous doesn’t have the rights to create issues.\n\nthe workaround is to use issuemanager or other service. take a look at the source of issueservice to see what it is doing.",
"name": "",
"is_accepted": true
}
] |
795589bec762fed9b49c2ba900cd7103 | hi there,
in the [changelog.md](https://bitbucket.org/atlassian/atlassian-connect-spring-boot/src/master/changelog.md) of acsb i can see that version 2.1.9 was supposedly released on 2021-06-11. however, on [mvnrepository.com](https://mvnrepository.com/artifact/com.atlassian.connect/atlassian-connect-spring-boot-starter) the latest version seems to be 2.1.8. am i just impatient or did something go wrong?
i also realized that [@epehrson](/u/epehrson) stopped posting release notes for acsb like [th…](https://community.developer.atlassian.com/t/announcing-atlassian-connect-spring-boot-2-0-0/31411) | atlassian-connect-spring-boot 2.1.9 not available on mvnrepository.com? | atlassian.com | 2021.31 | [
{
"text": "hi [@sven.schatter](/u/sven.schatter), we had a release pipeline issue for 2.1.9 where [only the parent pom](https://mvnrepository.com/artifact/com.atlassian.connect/atlassian-connect-spring-boot/2.1.9) got sync’d to maven central. it should be fixed within a day or two.\n\nregarding the release announcements here on the developer community, i only posted them to give higher-impact releases an extra push. since [2.1…](https://community.developer.atlassian.com/t/39240)",
"name": "",
"is_accepted": true
}
] |
fd503a0743904dc88a1aee3a6a62b588 | within a forge app i want to query content properties with cql.
if i set a content property from the forge app how can i later query it? is there a way to specify an index schema definition similar to how it is done in the atlassian-connect.json?
reference:
[https://developer.atlassian.com/clou…](https://developer.atlassian.com/cloud/confluence/confluence-entity-properties/#cql-search-extension) | querying content properties with cql / index schema definitions? | atlassian.com | 2021.10 | [
{
"text": "hi [@matthewebert](/u/matthewebert),\n\nthis capability is not yet supported by forge so i have created [frge-208](https://ecosystem.atlassian.net/browse/frge-208) to request it.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
025b75fadd1ec0e4fd2498a320d8ff5e | i need to upgrade my addon version on marketplace. since it changes “scopes” it needs to go through the marketplace approval. so at the same time i need to support the existing version for existing customers and the new version for marketplace approvers.
what is the best practice in this case? do i… | how to upgrade addon version when marketplace approval is required? | atlassian.com | 2021.17 | [
{
"text": "the same way that you should update a public rest api to support both the old and new versions applies here as well.\n\nessentially, here are some tips:\n\nfor iframes, if you add something new, create a new resource to serve your html, css and js. always maintain the old version of the webpage resourc…",
"name": "",
"is_accepted": true
}
] |
51be7497082c78dd5ddefd3fcc80bba1 | i would like to store complex data in the bandana table. i’ve thought of xstream to do the serialization/deserialization for me. serialization looks ok, but deserialization crashes with cannotresolveclassexception
same class doing both direction, works one way but not the other … ? what obvious err… | how to properly use xstream to serialize/deserialize in bamboo | atlassian.com | 2021.17 | [
{
"text": "looks like a classloader issue. i’ve decided to use active objects instead.",
"name": "",
"is_accepted": true
}
] |
50b555b626cd8217a91456377b16da1a | tl;dr: forge tunnel gives me the error “the manifest.yml file is not a valid yaml. fix it and try again.” while forge lint found no issues, and forge deploy is succeeded.
hi, i got the error the manifest.yml file is not a valid yaml. fix it and try again. when i run forge tunnel. but my manifest fi… | forge tunnel error: the manifest.yml file is not a valid yaml | atlassian.com | 2021.39 | [
{
"text": "hmm, it works again somehow.\n\ni restarted the ubuntu wsl2 in my windows system: wslconfig /t ubuntu-20.04 (reopen ubuntu after this command), and my forge tunnel works again, i don’t know if the ubuntu restarting really help here, or i have lucky from something else.\n\nbut one thing i don’t understan…",
"name": "",
"is_accepted": true
}
] |
7a3fe6ac5b9fa465215c404586bdf0f5 | i’m using react to build my interactive macros. my macro’s java class returns an html marker on which i mount the interactive react component once the page is loaded in the browser.
that all works fine but when exporting the page to pdf / word nothing is shown. i guess that happens because the cont… | macro not visible when exporting to pdf | atlassian.com | 2021.17 | [
{
"text": "[your macro can detect whether it is being exported](https://developer.atlassian.com/server/confluence/how-can-i-determine-the-context-my-macro-is-being-rendered-in/). if your macro is being exported you should return html that resembles your dynamic macro as best as possible. :slight\\_smile:",
"name": "",
"is_accepted": true
}
] |
1f2cca7798b7f2194b10f0d4f44c4d5b | i want to create custom fields using the trello api.
on [trello rest api](https://developers.trello.com/reference/#introduction) and [getting started with custom fields](https://developers.trello.com/docs/getting-started-custom-fields) are no informations about the api-key and -token at the corresponding sections.
how can i create custom fields on my boards without declaring my api-key and -token?
where do i have to de… | how do i create a custom field using the trello api? | atlassian.com | 2020.10 | [
{
"text": "thank you for your answer! i just figured it out.\n\ni copied the request body out of the [documentation](https://developers.trello.com/reference/#customfields) and didn’t recognize the missing quotation marks. i tried it by adding the key and token to the body just like in the custom fields value set, update and remove request.\n\nit worked!\n\nso my request l…",
"name": "",
"is_accepted": true
}
] |
eb38c91aac6117b3d7d9c8de7f659bc8 | is it possible to access jsm and insight api with forge? [index page for insight documentation](https://developer.atlassian.com/cloud/insight/intro/introduction-and-basics/)
we read through [forge app - accessing jira service management customer - #4 by romankolpachev](https://community.developer.atlassian.com/t/forge-app-accessing-jira-service-management-customer/48246/4) and it seems like it’s not currently possible. are plans to support jsm and insight on the roadmap?
is there a… | insight api with forge | atlassian.com | 2021.39 | [
{
"text": "[@decreelabs](/u/decreelabs),\n\nno. currently, it is not possible to securely access jsm and insight api with forge. there isn’t anything on [the public roadmap](https://www.atlassian.com/roadmap/cloud?selectedproduct=jiraservice&search=insight) specific to insight and forge.",
"name": "",
"is_accepted": true
}
] |
a7917ffc78d94a8d84e918b8a7228204 | does anyone know how to upload builded jar to nexus in deployment project? | bamboo and nexus | atlassian.com | 2021.17 | [
{
"text": "if you want to deploy to nexus using a deployment project on bamboo and reuse the artefact you can use <http://maven.apache.org/plugins/maven-deploy-plugin/deploy-file-mojo.html>\n\notherwise you are right, you can just call mvn deploy in the first place, no need to have a deployment project for that.\n\n…",
"name": "",
"is_accepted": true
}
] |
0eeb663a57ba03b84acedccfe4fdfd99 | hello, i’ve been working on a forge app for the codegeist hackathon for a few weeks and recently i received this email:
[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/d/9/d99b99a1396e0f03747123c80d62b93089544fed.png "image")
did i did something wrong? maybe i set up the wrong space for the hackathon? (<https://hookninja.atlassian.net/>)
or i just simply ignore it? | your bill estimate has changed #codegeist | atlassian.com | 2021.39 | [
{
"text": "do you have any apps installed that may be past their trial date?",
"name": "",
"is_accepted": true
}
] |
be14bb1ed3809edb9309c7738043bbc3 | jira server version 8.1.0
we have a custom plugin that makes rest api calls to our jira standalone server. it used to work just fine using a basic authentication method. we havent made any changes, and now it doesnt work anymore.
we can still make a basic rest call directly from the shell (as seen… | rest api, receiving a 401 authentication failed message, but worked before and still works with separate curl | atlassian.com | 2020.10 | [
{
"text": "hello\n\nthat was the tutorial i was following yes. the code provided with that tutorial doesnt appear to work as provided. i did also attempt to edit that properties client file to no avail. perhaps its something that someone on the atlassian team can examine as i believe that i was not the only one …",
"name": "",
"is_accepted": true
}
] |
3156885044aba4c88edc1ef52bfe8c69 | is it possible?
[[app\_system\_user]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/1/1/1136248eddfeb4163d62e04938cf4ab428dd48c6.png "app_system_user")
[[managed\_account]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/1/f/1f8e613e9fc24c42c9111f29d3fed4ef1290842b.png "managed_account")
i believe that a name at first came from atlassian-connect.json from “name” attribute.
however, changing it now in atlassian-connect.json does’t change system user name. | how to change app system user name | atlassian.com | 2021.17 | [
{
"text": "[@maciej.dudziak](/u/maciej.dudziak), this is a known issue. please watch [ac-2448](https://ecosystem.atlassian.net/browse/ac-2448).",
"name": "",
"is_accepted": true
}
] |
4f00037154671d0d86e1f2b6da1d4981 | i’ve been trying to update my server plugin to cloud, and need a way to store files larger than 32kb. i’ve been digging through the cloud documentation for a while, and only see a way to store 32kb with a maximum of 100mb per app via the content/app properties.
am i going to have to use a 3rd party… | storing files on a cloud instance? | atlassian.com | 2021.21 | [
{
"text": "it does appear like i will have to use a 3rd party to store files. i downloaded a trial version of insight inventory management (cloud version) and all uploaded images point towards their own servers.\n\nthis is pretty disappointing coming from the server version, as it significantly increases the amo…",
"name": "",
"is_accepted": true
}
] |
c58e9e50a3e8cc9b7c88228e74d56484 | hi,
i develop a plugin using the jqlautocomplete for my input.
with sdk instance i can get jqlautocomplete in the admin side.
[[16%20am]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/5/2/52462af45c706ae7df6b77f3bc7d4a31f67bfa23.png "16%20am")
but somehow in my live instance, i can not get jqlautocomplete on the admin side. @@
[[49%20am]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/b/7/b72700667aeee0cec3c5eba6e297a700dc7edaa1.png "49%20am")
the configuration in the system: " jql auto-complete … | couldn't find jqlautocomplete in admin side | atlassian.com | 2019.51 | [
{
"text": "hey,\n\nmake sure that your web resource contains the following dependency: <dependency>jira.webresources:jqlautocomplete</dependency>\n\nand that it is available in the context:\n\n<context>atl.admin</context>\n\nhope that this helps!",
"name": "",
"is_accepted": true
}
] |
ee6b8c4f3376ed9ef71472d709e926f1 | the code below successfully displays record from storage api via forge
const fetchrec = async () => {
const data = await storage.query().where('key', startswith('mykeysxxxxx')).getmany();
return data.results;
};
const app = () => {
const [ projects ] = usestate(fetchrec);
return (
<fragm… | cannot refresh record on button click via forge | atlassian.com | 2021.39 | [
{
"text": "hi [@nkemjikagwacham](/u/nkemjikagwacham),\n\nyou’ll need to use the second return value of usestate to update the projects.\n\nit should look something like…\n\nconst [projects, setprojects] = usestate(fetchrec);\n\nreturn (\n\n<fragment>\n\n// display or map projects records here\n\n<button text=\"refresh records\" onc…",
"name": "",
"is_accepted": true
}
] |
b162fc1a6e5353956288551952e9dbfc | hi,
i have been trying to create a jwt token using atlassian-jwt library and pass that as “authorization” header to make rest api calls in my nodejs app but keep getting error message
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<status>
<status-code>401</status-code>
<message>clien… | how to authenticate nodejs connect app for jira cloud? | atlassian.com | 2020.40 | [
{
"text": "i have been able to resolve this issue… 2 things\n\nfrom docs i understood that only relative url needs to be passed for creation of jwt token but it turns out it needs the full url with domain as well\n\nincrease the token lifespan from 3 minutes.\n\nthe custom field i had created was “read\\_only” as i on…",
"name": "",
"is_accepted": true
}
] |
098ec77c344fd895693d615740758f4b | hi all,
has anyone hit problems from today (19th aug) with trello custom fields power-up customfield values not updating through the api?
with no code changes made, as of today the rest put response is returning “invalid value for custom field type”
example ruby code is:
jsondata = {“value”: {“n… | customfield api invalid value | atlassian.com | 2020.40 | [
{
"text": "for anyone else coming to this from google …\n\nthis line … jsonheader = {“content-type”: ‘application/json’} no longer works\n\nit is now … jsonheader = {“content-type” => ‘application/json’}",
"name": "",
"is_accepted": true
}
] |
6a85536db875ae4e95dae32fd4fb7a12 | a confluence-cloud page has a unique pageid e.g. 98306.
when i access from the webui older page versions, the pageid changes to something like 3670020 or 3702790 and it is different for every page version.
if i am on a older version page, and i know the pageid of the old version, is there a way to… | using an older's version page id to get the latest's page version id | atlassian.com | 2021.17 | [
{
"text": "i have a similar problem at the moment too: when the macro is viewed on a historical version, i get only the page id of the historical version but some of the content i want to access (attachments, custom content) are always stored under the id of the current version\n\nit seems to be surprisingly har…",
"name": "",
"is_accepted": true
}
] |
0029ecb81ce6b50bb9a8e4e901f2fe08 | i follow the instructions in <https://developer.atlassian.com/server/framework/atlassian-sdk/create-a-helloworld-plugin-project/> but when i start the plugin it doesn’t start (see attachment).
[[screenshots]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/5/c/5cf6376ded7016dcb6ee2cd5b57c3a24eae16675.png "screenshots") | hello world plugin for jira doesn't start | atlassian.com | 2021.17 | [
{
"text": "can you try with java8? (it looks like you’re using java 11)",
"name": "",
"is_accepted": true
}
] |
aaa6d8615d86cce01764dd0639514086 | please i need urgent help. i save data to storage as follows.
await storage.set('key1', {name: 'rahul', email: '[email protected]' });
await storage.set('key1', {name: 'vasu', email: '[email protected]' });
here is my issue.
please how do i loop or map through the stored data and render/displayed them… | how to display or show result from storage in forge | atlassian.com | 2021.39 | [
{
"text": "you can query the storage.\n\nconst queryresults = await storage\n\n.query()\n\n.where('key', startswith('key'))\n\n.getmany();\n\n<https://developer.atlassian.com/platform/forge/runtime-reference/storage-api-query/>\n\nedited:\n\ni think you are doing it wrong somehow. here you are using the same key “key1” for…",
"name": "",
"is_accepted": true
}
] |
6151cfe5ea91780983527c0b225ecd47 | i already [asked this](https://community.atlassian.com/t5/confluence-questions/how-to-create-a-new-version-of-confluence-page-via-java-api/qaq-p/1358139) in the atlassian community and it was recommended to ask the developer community: i am trying to manipulate a confluence page using the java api. changing the content of the page works as expected but the change ist not correctly reflected in the page history - the content is ov… | how to create a new version of confluence page via java api? | atlassian.com | 2020.34 | [
{
"text": "i found a solution myself and posted it as a reply to my community question here:\n\n[image]\n\n[how to create a new version of confluence page via java api / scriptrunner?](https://community.atlassian.com/t5/confluence-questions/how-to-create-a-new-version-of-confluence-page-via-java-api/qaq-p/1358139#u1386292)\n\ni am trying to manipulate a confluence page via adaptavist scriptrunner for confluence and the java api. changing the conte…",
"name": "",
"is_accepted": true
}
] |
16a76b630e34174f8e16c8d174094eed | hi there!
does any of you know a method to only import the data of one instance and migrate it to another without overwriting the existing configuration of that target instance?
the problem with the “restore system” option is that the configuration of the instance is also wiped when importing from… | import only data not configuration | atlassian.com | 2021.17 | [
{
"text": "the issue is that you’re viewing the data as 2 different things - configuration and issues. jira views it as the same. migrating things in 2 steps will be problematic logistically (think custom fields - maybe the first instance doesn’t know about it but the second one has it as a required field).\n\ni…",
"name": "",
"is_accepted": true
}
] |
9bd70e941833bae2e9d6e6805fb8a2f2 | i’ve created this postfunction:
<workflow-function key="recalculate-deadlines" name="recalculate deadlines" i18n-name-key="recalculate-deadlines.name" class="com.atlassian.jira.plugin.workflow.workflownoinputpluginfactory">
<description key="recalculate-deadlines.description">plugin that reca… | post function structure is blank in the list of post functions added | atlassian.com | 2021.17 | [
{
"text": "indeed, that was the view template issue. adding the following line to the module and the corresponding view template solved the problem.\n\n<resource type=\"velocity\" name=\"view\" location=\"templates/postfunctions/recalculate-issue-deadlines-post-function.vm\"/>\n\n[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/a/3/a3c30781e64e1bd2da968bf20741d4cd73bf811c.png \"image.png\")",
"name": "",
"is_accepted": true
}
] |
69aebbe2fb44543684bd9f939eb9074a | hi,
i’ve written a bitbucket plugin that enforces a naming scheme for branches (a requirement from a team at my company) and validates a jira project id in the branch name through the use of application links. once it’s installed on bitbucket, the enforcement works as expected however i’ve found th… | installed plugin enabled system-wide instead of per repository | atlassian.com | 2021.17 | [
{
"text": "bitbucket server apps are always global. depending on which modules you’re using - they can be filtered down to be repository specific though. in your case - make sure to look at <https://developer.atlassian.com/server/bitbucket/reference/plugin-module-types/repository-hook-plugin-module/> since those…",
"name": "",
"is_accepted": true
}
] |
48ab7ee4f6e5b479c5a58f20b8b79ba7 | i am attempting to use the api documentation to build a process that can pull all users for audit, but when i use the information posted here: <https://developer.atlassian.com/cloud/jira/platform/rest/v3/#api-rest-api-3-users-search-get>
i made it further when i figured out that the query is not to a… | unable to use rest api | atlassian.com | 2020.10 | [
{
"text": "[image] scottreopelle:\n\ncurl -d- -u [email protected]:my-api-token -x get -h \"content-type: application/json\" https://my-site.atlassian.net/rest/api/3/users/search\n\nin this, username seems to be incorrect. it’s not supposed to be [email protected] but something like u…",
"name": "",
"is_accepted": true
}
] |
7f04061c9c5e4c31c968507b842d2630 | hi,
i want to develop some springboot mockmvc integration tests that simulate the call from a confluence cloud dynamic macro. a code snippet from the integration unit test can be seen below:
@runwith(springrunner.class)
@springboottest(webenvironment = springboottest.webenvironment.random\_port)
@a… | spring boot atlassian connect mockmvc integration testing | atlassian.com | 2021.17 | [
{
"text": "hi [@andrewtyson](/u/andrewtyson),\n\n[noauthenticationit](https://bitbucket.org/atlassian/atlassian-connect-spring-boot/src/master/atlassian-connect-spring-boot-it/atlassian-connect-spring-boot-minimal-it/src/test/java/com/atlassian/connect/spring/it/auth/noauthenticationit.java) provides an example for you to follow:\n\n@springboottest(..., properties = \"atlassian.connect.require-auth-exclude-paths=/no-auth\")\n\ni double-checked that the test passes fine with mockmvc as well (and fails without the require-auth-exclude-paths property):\n\nmvc.p…",
"name": "",
"is_accepted": true
}
] |
620dc825b046ba2d173cfcb251d61030 | atlassian “allow access” feature does not work. even though i am logged in , it sees me as not logged in.
it is giving me this error:
could not verify the authentication to atlassian account
here is recording of this bug:
[[log in to continue - log in with atlassian account]](https://www.youtube.com/watch?v=gwdesvsgnly) | could not verify the authentication to atlassian account | atlassian.com | 2021.39 | [
{
"text": "i was having the same issue. in my case, i was able to fix (or at least, work around) it by first signing out of my atlassian account (e.g. from <https://start.atlassian.com/>) then signing in again. i was then able to authorise the app as expected.",
"name": "",
"is_accepted": true
}
] |
c280b88fd7f2977468d06fcb75fc32d7 | how to prepare my table data as properties file and download into browser on click of a button. | confluence - prepare and download properties as file at client side | atlassian.com | 2021.17 | [
{
"text": "thanks for your replies. i already found the solution from below, it is working fine.\n\n[[gok]](https://stackoverflow.com/users/899188/gok)\n[export to csv using jquery and html](https://stackoverflow.com/questions/16078544/export-to-csv-using-jquery-and-html)\n\njquery, html, csv, export\n\nasked by\n\n[gok](https://stackoverflow.com/users/899188/gok)\n\non [08:56am - 18 apr 13](https://stackoverflow.com/questions/16078544/export-to-csv-using-jquery-and-html)",
"name": "",
"is_accepted": true
}
] |
79b82aa29d7f21a408ab08ecd609675b | recently, i have encountered this problem.
[[image]](//uploads-discourse-atl-community-prod.s3.dualstack.us-east-1.amazonaws.com/original/3x/7/6/762f03bc9aed50297a210ef1a9c98344921864fb.png "image")
why is it happening from time to time? i believe it could affect customers.
sorry if such a topic already exists somewhere. i didn’t find any information here. | did you notice that the atlassian marketplace is getting unreachable from time to time? | atlassian.com | 2020.16 | [
{
"text": "yes, we also noticed it.\n\nyou may check for more information the status page - <https://developer.status.atlassian.com/>\n\natlassian publishes information about the outage and the recovery steps.\n\nif you want to get notification you may subscribe to updates for any service that is down.\n\nregards,\n\nanni…",
"name": "",
"is_accepted": true
}
] |
95631170b25c1af388bf9d3d17e9b5d9 | i am currently using a program to create and close tickets automatically. to do this we have a (spring boot) java application using maven. this has worked for ages but since yesterday it seems that our instance got hit with the changes for the gdpr. we suspected the jira library to handle this but w… | jira library (using maven) not working with gdpr name change | atlassian.com | 2021.04 | [
{
"text": "in case it isn’t clear, “jira rest java client*” is jrjc. atlassian does not make a similar library to work with jira cloud.\n\ni wrote up how to generate a client library from our open api spec for jira cloud. note that this won’t provide a drop-in replacement if you were previously using jrjc.\n\nsee [h…](https://community.atlassian.com/t5/jira-articles/generating-a-rest-client-for-jira-cloud/ba-p/1307133)",
"name": "",
"is_accepted": true
}
] |
1833795e6fdfe200a0d7300db5634ac2 | hello community,
we have developed three custom fields to use on our jsm instance, based on the forge risk assessment example code. these are for incident priority, problem priority and request priority. up until this week, they were working fine but now the fields have disappeared from the agent… | forge app custom field has disappeared from our production jsm screens | atlassian.com | 2021.25 | [
{
"text": "ok so success!!! if we modify the manfest.yml file to remove the data elements as we your commit on the risk assessment field example, it now works as expected and is visible.\n\nthis is the code i removed.\n\ndata:\n\nstorage:\n\nissueproperty:\n\nkey: forgeriskfieldvalue\n\nreadonly:…",
"name": "",
"is_accepted": true
}
] |
ac44febd3f92714d2c3f657fbf1240bc | only seeing idmembercreator now. was membercreator deprecated? or maybe this is what happens when the user who created the comment is deleted? but there’s still an id.
an example response i’m getting:
{
'limits': {
'reactions': {
'uniqueperaction': {
'status… | membercreator field missing from /cards/{id}/actions response | atlassian.com | 2021.04 | [
{
"text": "[image] mattlassian:\n\nor maybe this is what happens when the user who created the comment is deleted?\n\ni’m 99% sure this is the case.\n\nit looks like the membercreator field is pulled at time of need from the db. for instance, if you go and change your name, the new name will be reflected in all…",
"name": "",
"is_accepted": true
}
] |
4a2c6e4ad2b7241170041d235ce30351 | first of all, lots of :+1: :+1: :+1: for this new feature release in atlassian cloud: <https://jira.atlassian.com/browse/cloud-2636>
question: did anyone test it against their connect apps? do customers need to whitelist connect app ips, or this mechanism is dedicated only for user initiated connec… | ip whitelisting versus server side requests from a connect app | atlassian.com | 2021.31 | [
{
"text": "hi [@grzegorz.tanczyk](/u/grzegorz.tanczyk) and [@marc](/u/marc),\n\nmy interpretation is that this feature only restricts the connections made by users to the product and as such, i don’t believe there will be any direct impact on apps.\n\nusers also won’t be able to access that product programmatically via the apis\n\nthis statement r…",
"name": "",
"is_accepted": true
}
] |
45ce021bf1888cce8de18d41474cdfd9 | hello,
can anyone explain to me what this mean?
dev mode - web resource batching disabled, ‘atlassian.dev.mode’ enabled
cheers
chris | what is resource batching? | atlassian.com | 2021.17 | [
{
"text": "the js and css files are no longer combined. this isn’t something you’d want to do in production (batching helps to speed things up). in development mode you don’t really want this since it will have to rematch things each time you make a change in them (and it will be slower) so each js file is loa…",
"name": "",
"is_accepted": true
}
] |
ce3c9a4d405fe5870d602d104bc0df72 | i have gone through the steps of the tutorial. i installed node.js, git, ace, and ngrok.
it all works well until i get to the “create a basic app” step 2.
when i run “npm install” i get the following:
c:\users\ron\documents\visual studio 2015\projects\confluence\confluence-helloworld-addon>npm i… | hello world addin fails at step - "npm install" | atlassian.com | 2021.17 | [
{
"text": "i installed c++ for visual studio and it fixed the problem.\n\nfollowed the advice here:\n\n[build error on windows 10 - trk0005: failed to locate: \"cl.exe\"](https://github.com/lovell/sharp/issues/341)\n\nopened 12:15pm - 21 jan 16 utc (utc)\n\nclosed 05:16am - 23 jan …",
"name": "",
"is_accepted": true
}
] |
0c5f9ac6a8a49e8c93be1873b6627eb6 | hi all,
we recently encountered errors related to class initialization of apache poi dependencies despite not changing the version/dependency at all since 2017. it seems that a class cannot be loaded even during jira software restart. we are getting error 500 from our export capabilities due to thi… | class cannot be loaded when restarting jira software | atlassian.com | 2021.39 | [
{
"text": "i have that experience about apache poi such as only latest version of that framework works with atlassian confluence server and previous versions do not work. so possible some how latest version of the jira server is changed that way apache poi 3.16 do not work anymore.",
"name": "",
"is_accepted": true
}
] |
341b2958730bb3bfea9e71cd53fc8b10 | i want to develop multi-select text box with autocomplete with users, groups and space keys using aui select2. i am able to do this with static options but want to fetch users, groups and space names dynamically and populate select options. please suggest me some useful code snippets to do the same … | aui select2 - how to make it autocomplete dynamically | atlassian.com | 2021.17 | [
{
"text": "when attaching any select2 to a input, you must use <input type='hidden' name='yourname' id='yourid' /> instead of a select element.\n\nsimply put, for a static field, use select elements. for a dynamic field, use input type='hidden'.",
"name": "",
"is_accepted": true
}
] |
dd89d86f083e33b9cb40996001846dc8 | hey developers,
i have a dialog and added the richt text editor (called atlassian-wiki-renderer) to give the user the opportunity to write some text. by default the editor have some fancy functionalities for example to add a html table or panel. i want to extend some more useful elements to the edi… | extend the atlassian wiki renderer | atlassian.com | 2021.17 | [
{
"text": "hi [@m.abdel-mola](/u/m.abdel-mola),\n\nto do that, you should look at the rich text editor developer documentation which can be found here: <https://developer.atlassian.com/jiradev/jira-platform/guides/rich-text-editor/tutorial-writing-plugin-for-rich-text-editor-in-jira>\n\nyou can hook into the editor and do fancy things…",
"name": "",
"is_accepted": true
}
] |
da71fb11169a1ef61d75535017f49695 | hello!
i’m new to jira development, and have a question about dashboard item conditions.
i created an dashboarditem add-on
(based on <https://bitbucket.org/atlassianlabs/atlassian-connect-jira-dashboard-item-example/overview>). the add-in installed just fine, but the dashboard item was not availab… | does jira cloud no longer support callback-based conditions? | atlassian.com | 2021.17 | [
{
"text": "hi [@mitch.terlisner](/u/mitch.terlisner)\n\nthe callback based conditions you are referring to were called “remote conditions” and they were removed some timeago. back then the prefined conditions were rather limited, entity properties didn’t exist, but there are a lot more conditions now and [jira expressions](https://community.developer.atlassian.com/t/introducing-jira-expressions/20006) provide a po…",
"name": "",
"is_accepted": true
}
] |
cc2e0b4883b0c66e7b6d1161f1ac42dd | when i access the project administration page using system administrator, i am getting the response, but if the project administrator access the webitem in administration page, it throws credentialrequiredexception.
i am trying to fetch the confluence pages using rest api’s. can someone provide rea… | credentialrequiredexception thrown for webitem in project administration page for users other than global system administrator? | atlassian.com | 2021.17 | [
{
"text": "thanks for the replies.\n\nin outgoing authentication on the jira application, the checkbox was unchecked for “enable outgoing 2-legged oauth with impersonation requests”.\n\nonce checked, fixed my error.\n\n[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/d/f/dfcfbcb358c7ba97afa15db6ddfb0352ed36c52c.png \"image\")",
"name": "",
"is_accepted": true
}
] |
d90b3711b609d2cdb90b13e34c3d459c | how can i force window.ap.request to always add header x-atlassian-force-account-id: true to every request that i make from the plugin? i tried to override xmlhttprequest’s send method but with no luck.
xmlhttprequest.prototype.realsend = xmlhttprequest.prototype.send;
var newsend = function(vdata)… | add header to all connect api requests | atlassian.com | 2021.17 | [
{
"text": "i think the header would have to be specified on each request:\n\nap.request({\n\n\"url\": \"/sompath\",\n\n\"type\": \"get\",\n\n\"headers\": \"{'x-atlassian-force-account-id', true}\",\n\n\"cache\": false\n\n});",
"name": "",
"is_accepted": true
}
] |
8381d2c6faf3fb7b9bd7bf172b13ca9e | greetings!
wondering if there a way to edit the details of app-listing in the marketplace (after approval of app, but before releasing the app). we would like to edit hero listing and add additional screenshots. sincerely appreciate any pointer.
thanks,
[image]
[home - ushur](https://ushur.com/)
automate yo… | editing app listing once approved | atlassian.com | 2019.51 | [
{
"text": "hi [@ushur](/u/ushur) - check out our documentation on managing your app listing here:\n\n<https://developer.atlassian.com/platform/marketplace/listing-and-managing-apps/>\n\nnote that there are two spots you can update app information after clicking “manage app” from your app listing page:\n\napp level - by clicking …",
"name": "",
"is_accepted": true
}
] |
47088502e68a018c2dd3bbfafab5657e | i can’t figure out how to submit a ticket - my trello page won’t load at all, but the status page says all systems operational… [[screen shot 2021-09-20 at 8.51.17 am]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/0/3/03b44cef54aacb60ede2dad345dad8832fa7d286.jpeg "screen shot 2021-09-20 at 8.51.17 am") | cannot connect to trello board | atlassian.com | 2021.43 | [
{
"text": "works now! thank you!",
"name": "",
"is_accepted": true
}
] |
a708c09a65934f03c4e39d6bb4e1ec36 | hi,
general question about server programming (and scalability for data center versions): how are we supposed to handle large batches of data?
we support importing requirements (that’s our data) from excel. how much data should we accept in a single excel file?
are we supposed to handle extremely… | how should we handle large data in confluence server or jira server? | atlassian.com | 2021.17 | [
{
"text": "hey [@aragot](/u/aragot),\n\nto add to neil and daniel comments.\n\nall of this is one single question, as you’ve guessed\n\nthanks for asking :slight\\_smile: this is a very valid question and it’s important for application stability. to give you are a short and quick answer: add limits for everything and stream as m…",
"name": "",
"is_accepted": true
}
] |
41a1bc434aefb1f440a9c541ef7fcb93 | hi team, i have the following problem with a p2 addon i’m working on.
one page of our addon will allow users to create issues in the context of the our page’s data. my questions are:
how can i open the create issue dialog from our addon page in a way that created issue keys are passed back to the… | how to open create issue dialog with callback after issues have been created? | atlassian.com | 2021.17 | [
{
"text": "my team mate has found the solution to this problem. using the following javascript, you can open the create issue dialog with a callback. once all the issues have been created, the callback is called with the created issue data.\n\nwrm.require([\"wr!com.atlassian.jira.jira-quick-edit-plugin:quick-crea…",
"name": "",
"is_accepted": true
}
] |
c66d8fd916e55795b45b5681005a3ebe | hello,
we are developing our cloud migration system that will migrate data from server to cloud using the app migration library.
the question is: how to make our app confirmed. until now, we still get unknown results for the option ‘can be migrated’.
[screenshot\_2021-01-26%20assess%20your%20apps] … | how to make our app migration confirmed | atlassian.com | 2021.10 | [
{
"text": "hello ali,\n\nthe can be migrated field will be active after the release of ccma in feb and jcma in april.\n\nyou will also need to update your listing in marketplace using the migrations api documented here\n\n[https://developer.atlassian.com/platform/marketplace/rest/api-group-migrations/#api-group-migr…](https://developer.atlassian.com/platform/marketplace/rest/api-group-migrations/#api-group-migrations)",
"name": "",
"is_accepted": true
}
] |
077b597e1284c0b15183baaf53436f0a | i made my first bitbucket server plugin, and wanted to release it to the marketplace. it relies almost fully on static resources so i want these to be disabled unless the plugin is licensed.
since there’s an example from atlassian, this should be a trivial thing. [https://developer.atlassian.com/pla…](https://developer.atlassian.com/platform/marketplace/ommitting-web-resources-for-unlicensed-server-apps/) | how to get licensing working for web-resources? | atlassian.com | 2021.17 | [
{
"text": "hi [@jan](/u/jan),\n\nit seems to be ok on my end when i ran atlas-run-standalone --product bitbucket and upload the jar file.\n\n[[image]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/7/7/77a168c6de8cf34ddf5a2388638a49da8de2cb17.png \"image\")\n\ntrying to redeploy via quickreload, by running atlas-package on a different terminal also was successful in redeploying the app. the only changes i made were to remove the tw…",
"name": "",
"is_accepted": true
}
] |
d1dc8c74297363175fcc18017b259f19 | dear forge community,
i currently have a big problem with two forge macros on our confluence cloud instance. up until today in the morning everything worked fine, but now my two macros who share the same trigger are no longer working in production and test environments.
the trigger looks as follow… | big problem with page publish trigger | atlassian.com | 2021.25 | [
{
"text": "there’s an active incident that’s likely to be related. i had the same problem with missing triggers in the past 8hrs.\n\n<https://confluence.status.atlassian.com/>",
"name": "",
"is_accepted": true
}
] |
ac87e7cadfe97e733459e1ea16f92ab8 | hi,
we have noticed that we are no longer receiving the request type identifier as part of the jira issue created webhook when requests are raised via the jsd portal. instead we’re receiving a permission error as part of the fields list.
when we receive a webhook create event we parse the json loo… | issue request type not sent on issue create webhook from jsd portal | atlassian.com | 2019.51 | [
{
"text": "hi [@davidm](/u/davidm) – thanks for reporting this. we’ve now turned off the feature flag that caused this. please let us know if you’re still experiencing any issues.\n\nthanks,\n\namaresh",
"name": "",
"is_accepted": true
}
] |
564b4139cba95b6ed51991855bda904f | hello,
i’m trying to use a [toggle button](https://docs.atlassian.com/aui/7.0.0/docs/toggle-button.html) in my plugin.
when the plugin runs on jira 7.6.1 everything works fine, although, if i test on jira 7.0.0 the button is not showed but the element is created. i’ve already added the web resource to my atlassian-plugin.xml.
any ideas how to solve this?
[[w…](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/9/7/97718ce44d227b4d2a5bd73dc0ce859658ca8efd.jpg "webresource") | toggle button jira 7.0.0 | atlassian.com | 2021.17 | [
{
"text": "the toggle button was introduced in aui 5.9 (<https://docs.atlassian.com/aui/7.0.0/docs/toggle-button.html> ). according to <https://bitbucket.org/atlassian/aui-adg/wiki/versions/product-version-matrix> aui 5.9 wasn’t used until jira 7.2. in this case you’d probably need to create your own version of th…",
"name": "",
"is_accepted": true
}
] |
97c37bea26f45fa56a80927069e564ed | i would like to have my plugin create a new issue type. i would like this new issue type to be composed of my own custom fields as well. is there a way to do this using the jira server sdk?
thanks in advance,
teddy | possible to have a jira plugin create a issue type? | atlassian.com | 2021.17 | [
{
"text": "typically you would be using the classes issuetypeservice, issuetypemanager, customfieldservice, and customfieldmanager to achieve this.",
"name": "",
"is_accepted": true
}
] |
93b6510ac8038b604b3349ef5fe8e445 | i’m developing a jira plugin using jira version 7.13.0. i want to create an issuetype on plugin enabled. here is my code:
@eventlistener
public void onpluginenabled(pluginenabledevent event) throws genericentityexception, ioexception {
if(plugin\_key.equals(event.getplugin().getkey()… | on jira starting, defaultissuetypemanager.creationlock is null when pluginenabledevent is published | atlassian.com | 2021.17 | [
{
"text": "answering my own question for others who come across same problem with me. i moved the logic from pluginenabledevent to lifecyleaware’s start() method, at which time all startable components should have been initialized.",
"name": "",
"is_accepted": true
}
] |
358a28021a66078d9efb6a24ca25ca0a | hi, i want to create a number of new issues using the rest bulk issue creation. after the issues have been created i want to add a unique (different for every issue) comment to each issue. does the order in which the issue details are provided (in the post) match that of the created issue details … | rest bulk issue creation | atlassian.com | 2021.17 | [
{
"text": "hi, [@paul](/u/paul).\n\nregarding the order of issues returned depending on the order in the request, i believe it is so. i made a quick test and it holds true as well.\n\nregarding the error during bulk creation of issues, if one issue fails due to invalid issue type for example, all the others will still be cre…",
"name": "",
"is_accepted": true
}
] |
821ac2eb9ee4542b4131a65cc313de5a | hi. i am trying to create a bitbucket merge check plugin. the plugin sucessfully stops merges but i want to add a client-web-panel to display more data about why the merge check failed and to do that i need to send this data from the merge check .java file with the preupdate function to the client-w… | how do i send data from bitbucket merge check to client-web-panel? | atlassian.com | 2020.05 | [
{
"text": "for those wondering i figured out how to do this, i added a rest service that the javascript calls.\n\n<https://developer.atlassian.com/server/framework/atlassian-sdk/developing-a-rest-service-plugin/>",
"name": "",
"is_accepted": true
}
] |
c40f559d4832884f44c5d56406e0f2b3 | hello,
while trying to write a forge app right now (and using forge tunnel), i use storage, query to bulk load some our things, also with a suitable startswith condition - exactly as has been depicted in the documentation. however, i get the whole contents of the store - that is also kev/value pair… | is the query method in the storage api broken right now? | atlassian.com | 2021.43 | [
{
"text": "hello,\n\nquite similar … but i have found the culprit: we use and iterate over a cursor that missed the condition and yielded this bogus results… i wished the api for that would be less convoluted and harder to get wrong as we apparently did: if i have a reference for the cursor it seems really weird…",
"name": "",
"is_accepted": true
}
] |
8153cd815e3f2a717ecf048f9cef92aa | i am trying to create automation action using following module:
"automationactions": [
{
"key": "apply-template-action",
"name": {
"value": "apply template"
},
"configform": {
"url": "/render/automation-action-edit?projectkey={project.key}"
… | automation action - config form keeps spinning, no request is sent to the app's server, what am i doing wrong? | atlassian.com | 2021.31 | [
{
"text": "hi [@maciej.dudziak](/u/maciej.dudziak) ,\n\ni’ve created a minimal example for this which seems to work. you can install it from <https://dx-automation-action.glitch.me/connect.json> and you can inspect the code at [glitch :・゚✧](https://glitch.com/edit/#!/dx-automation-action).\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
fe7364e8a2ff49f3008b41ddeb8fe8d8 | while attempting to register a webhook using an integration using 3lo oauth instead of connect, using the directions here:
<https://developer.atlassian.com/cloud/jira/platform/webhooks/#registering-a-webhook-via-the-jira-rest-api--other-integrations->
i’ve post’ed here:
https://api.atlassian.com/ex… | how can i register a webhook using the rest api when using 3lo oauth2? | atlassian.com | 2021.04 | [
{
"text": "hi [@jordanglassman](/u/jordanglassman),\n\ni discussed with my team on this and your confusion is understandable. let me try clarifying those:\n\nas mentioned in [3lo docs](https://developer.atlassian.com/cloud/jira/platform/oauth-2-authorization-code-grants-3lo-for-apps/#3-2-construct-the-request-url), “requests that use oauth 2.0 (3lo) are made via api.atlassian.com (not https://your-domain.atlassian.net )”, you will have to use api.atlassian.com …",
"name": "",
"is_accepted": true
}
] |
ba9571dd580239c1be6f6c2695025738 | i’ve been looking at a way to limit my web-panel to servicedesk projects. i’ve found <https://developer.atlassian.com/cloud/jira/platform/conditions/> which lists the project\_type condition but i don’t see it in the conditions documentation here: [https://docs.atlassian.com/dac/javadoc/jira/reference/c…](https://docs.atlassian.com/dac/javadoc/jira/reference/com/atlassian/jira/plugin/webfragment/conditions/package-summary.html) | how can i limit my web-panel to servicedesk projects? | atlassian.com | 2021.17 | [
{
"text": "for server,\n\nyou’ll need to write your own condition class (extend <https://docs.atlassian.com/software/jira/docs/api/7.6.0/com/atlassian/jira/plugin/webfragment/conditions/abstractwebcondition.html> ) and then on the project object or on the issue object (depending on the location that you’re doing t…",
"name": "",
"is_accepted": true
}
] |
25805c2d0b5037e5175d8336a9b9d44d | i’m developing a jira connect app. we use the atlassian-connect-express.
we set the scopes to admin in the app descriptor. (initially, we started with read)
in the connect app, we want to create issues. in order to do this, we need to get custom fields for the issue types.
according to developer … | can't get issue type fields via createmeta rest api endpoint from connect app (using jwt) auth | atlassian.com | 2021.39 | [
{
"text": "we resolved this. the issue was on our side. the root cause for this was that we were doing the request using an outdated and buggy [jira-ruby](https://github.com/sumoheavy/jira-ruby) client version (v.1.7).\n\nfix was introduced in v.1.7.1 - [here is the fix](https://github.com/sumoheavy/jira-ruby/commit/0302694ae20bb8e8e37e8b16d11ece4a0c027e9a).\n\nwe were also able to a get correct response without using a jira-ruby client.",
"name": "",
"is_accepted": true
}
] |
43f8c4dc6359f0f27c466731b9f7bcea | hello,
i am trying to develop a plugin for jira admins, in which they can submit a text through a form and something happens with the text(that part is not in scope right now).
in this form i would like to use the fancy richt text editor from jira itself, the wiki renderer and submit the form thro… | how to initialize the wiki-renderer for an admin plugin? | atlassian.com | 2020.40 | [
{
"text": "here is sanitised version of an old editor markup:\n\n<form action=\"\" class=\"aui\">\n\n<div class=\"form-body\">\n\n<div class=\"field-group aui-field-wikiedit test-input\">\n\n<label for=\"test\">test</label>\n\n<div class=\"jira-wikifield\" renderer-type=\"atlassian-wiki-renderer\" issu…",
"name": "",
"is_accepted": true
}
] |
bbeeff7f062e662a988addab12ed39db | i’d like to start confluence in my development environment using the [atlassian plugin sdk](https://developer.atlassian.com/docs/getting-started) / atlassian maven plugin suite (amps) without starting the [synchrony](https://developer.atlassian.com/confdev/collaborative-editing-for-confluence-server) server.
reason: i have some trouble (related to [unable to edit any pages in confluence 6.x due to collaborative editing](https://confluence.atlassian.com/confkb/unable-to-edit-any-pages-in-confluence-6-x-due-to-collaborative-editing-867362716.html)) and i really do not… | disable synchrony with system property in confluence plugin sdk | atlassian.com | 2021.17 | [
{
"text": "christoffer posted the solution to the problem [here](https://community.developer.atlassian.com/t/how-to-disable-collaborative-editing-via-amps-when-developing/8057/4)\n\n<systempropertyvariables>\n\n<atlassian.darkfeature.site-wide.synchrony.opt-in.disable>true</atlassian.darkfeature.site-wide.synchrony.opt-in.disable>\n\n<atlassian.darkfeature.site-wide.shared-drafts.disable>true</atlassian.darkfeature.site-wide.sh…",
"name": "",
"is_accepted": true
}
] |
752b9bad50364ba4a2fe1ec2ce46d959 | i’m trying to access jira’s api to add some properties to issues immediately after the app installs.
at the moment i’m using the lifecycle hook host\_settings\_saved and waiting 5 seconds after that before accessing the api (accessing the api immediately leads to a status 400 error).
however, i’m fi… | how to access jira's api immediately after app installs? | atlassian.com | 2020.10 | [
{
"text": "hi rhys,\n\ni think it was asked already, but can’t find proper link, so accessing jira’s api on connect\\_addon\\_enabled event works for us with no problems, using nodejs atlassian-connect-express, e.g.:\n\naddon.on('connect\\_addon\\_enabled', function (event, body, req) {\n\nnote, you may need to add connect\\_…",
"name": "",
"is_accepted": true
}
] |
ffbe1213bb5ed0369b7aa11e51914a2f | hi,
while developing the application, such an interesting bug was found:
[[issue-dialog-with-else-modal]](https://aws1.discourse-cdn.com/atlassiandeveloper/original/3x/7/a/7aa04c246e56f4bcafa94babd809d67c90e84a23.png "issue-dialog-with-else-modal")
steps to reproduce:
open a board
open an issue, make sure it’s opened as a dialog.
open a glance panel that is hight enough to be scrollable.
open any dialog, e.g. “give feedback”
the glance… | problems displaying dialog over issue dialog | atlassian.com | 2021.39 | [
{
"text": "hi [@alexeygritskevich](/u/alexeygritskevich),\n\nthanks for reporting this. i’ve created <https://jira.atlassian.com/browse/jracloud-74975> to track this problem.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
be93da05e62f0985b996a9c93771baf8 | hello experts,
i am calling ap.request() method in the hello-world.hbs file to set issue property using the jira cloud app. but i am getting 400 error. here is my hello-world.hbs file.
{{!< layout}}
<header>
<script>
ajs.toinit(function(context)
{
alert("init done");
ap.request({
… | error 400 while setting issue properties | atlassian.com | 2020.10 | [
{
"text": "looks like it’s almost working -> you can see from stack trace that operation was successful (success method was called), but there’s some problem with deserializing response. response is not used in your case so exception should be gone after you remove this line:\n\nresponse = json.parse(response);\n\n…",
"name": "",
"is_accepted": true
}
] |
ed1daa32f9891e5f12c91d1d5d238a6e | i just discovered that jira cloud dashboards have the new “add a gadget” sidebar (instead of the previous popup) which renders all available gadgets and their thumbnail images. the problem is that all thumbnail images are cropped as squares with a full height but a reduced width. as a result all thu… | new "add a gadget" sidebar in jira dashboards crops gadget thumbnail images | atlassian.com | 2021.39 | [
{
"text": "hi [@raimonds.simanovskis](/u/raimonds.simanovskis) ,\n\nthe jira cloud team have indicated they are going to fix the thumbnail aspect ratio today. in my experience, it will take a few business days to get the fix rolled out.\n\nregards,\n\ndugald",
"name": "",
"is_accepted": true
}
] |
ca16d58c416d896faa50f7a2dff3bbad | i’m trying to assign an issue in jsd with a java server.
this curl command works great:
curl -d- -u admin:password -x put --data '{ "fields": { "assignee": {"name":"admin"} }}' -h "content-type: application/json" https://ac-demo.atlassian.net/rest/api/2/issue/help-3
first question, how should i a… | how to authenticate java put request to cloud rest api | atlassian.com | 2021.17 | [
{
"text": "you need to include apache commons lang in your dependencies; it appears to be missing from atlassian’s jwt library.\n\n<dependency>\n\n<groupid>commons-lang</groupid>\n\n<artifactid>commons-lang</artifactid>\n\n<version>2.6</version>\n\n</dependency>",
"name": "",
"is_accepted": true
}
] |
2411420d05f2c3dfdb6aae8f3a200ffa | in [documenting your apis with the atlassian rest api browser](https://developer.atlassian.com/docs/atlassian-platform-common-components/rest-api-development/documenting-your-apis-with-the-atlassian-rest-api-browser) i read that to make a rest service appear as public api i need to use the publicapi (or experimentalapi) annotation. unfortunately this does not make my rest services to appear in the public section of the rest api browser. instead i need … | public rest services in rest api browser | atlassian.com | 2021.17 | [
{
"text": "hi [@rr1](/u/rr1),\n\ni think that this is hard-wired :frowning: . maybe this answers you question:\n\n[image]\n\n[how to make my rest resource appear as public in the rest api browser?](https://community.atlassian.com/t5/answers-developer-questions/how-to-make-my-rest-resource-appear-as-public-in-the-rest-api/qaq-p/562585)\n\ni am documenting a jira plugin rest api resources and am using the rest api browser (rab) to verify my documentation. in th…",
"name": "",
"is_accepted": true
}
] |
7354b47b371aa17bc38ae3baf39223b2 | prior to jira 8 (and atlassian plugins 5), you were able to listen for the pluginuninstallingevent of your plugin from within your plugin, giving you the opportunity to perform some cleanup before uninstalling. for example, a plugin installed from an obr could also uninstall its accompanying plugins… | a plugin can no longer listen for its own pluginuninstallingevent since atlassian plugins 5 | atlassian.com | 2021.17 | [
{
"text": "hi everyone,\n\na product issue is created for this. please see progress in <https://ecosystem.atlassian.net/browse/amps-1503>\n\ncheers,\n\nanne",
"name": "",
"is_accepted": true
}
] |
bc22a8678034eb21c50ee466254e7993 | hey,
it is pretty simple really.
i do not succeed in running jira with service desk installed in the amps.
i have followed the guide linked below thoroughly but i can’t find the solution to this problem.
i have added the jira service desk application in the pom.xml and recreated jar file as seen… | i do not succeed to run jira with service desk in amps | atlassian.com | 2021.21 | [
{
"text": "i don’t know why it is jira-maven-plugin in the screenshot but actually i had already corrected this.\n\ni managed to solve it by changing to correct jira servicedesk version and also adding jira software.\n\nlink for reference of solution:\n\n[image]\n\n[update latest amps documentation for…](https://community.developer.atlassian.com/t/update-latest-amps-documentation-for-jira-service-desk/30350)",
"name": "",
"is_accepted": true
}
] |
7f5a83409716ef9878839f0e718ef08d | i want to know the location of search page share and export
and i find the page ,but it not tell me! <https://developer.atlassian.com/server/jira/platform/general-navigation-ui-locations/>
<web-section key="export search issues" name="export search issue" location="**location is ??** "
… | i want to know the location of search page for share and export | atlassian.com | 2021.17 | [
{
"text": ":blush: i find it: jira.navigator.pluggable.items",
"name": "",
"is_accepted": true
}
] |
c4820221314d5e9dd4345e47036c4f09 | hi, all! i’m trying to develop a plugin reading this tutorial (<https://developer.atlassian.com/server/jira/platform/creating-a-jira-issue-crud-servlet-and-issue-search/>) and i’d like to specialize it changing the query construction using the operator changed from/to (like this: "status changed from … | search jira issues with operator changed | atlassian.com | 2021.17 | [
{
"text": "after some searching inside the api i’ve found changedclause interface where i can do what i was looking for. afterwards, was necessary to include jira-core dependency to implement it.\n\nif someone was looking for an answer, that’s it. and thanks for any effort.",
"name": "",
"is_accepted": true
}
] |
e80cb10b74d6aee6f192b6ee69e4b73f | the flag component docs are housed here: <https://ak-mk-2-prod.netlify.com/packages/elements/flag>
at the moment i get the following error in the script console on that page and an eternal loading spinner:
uncaught error: missing flag in file system
at object.\_\_webpack\_exports\_\_.d (main.js:1)
… | the documentation for @atlaskit/flag is broken | atlassian.com | 2021.17 | [
{
"text": "hi [@jbevan](/u/jbevan), we the url is now <https://atlaskit.atlassian.com/packages/core/flag>",
"name": "",
"is_accepted": true
}
] |
88ab13c962bab4aa090814b0543df13e | we’re developing a jira cloud add-in similar to our currently shipping confluence cloud add-in.
our add-in is completely in html/javascript using the all.js bridging library loaded dynamically from the jira cloud instance and then using the ap object for all jira services, primarily the request obj… | xsrf issues with jira cloud post of attachments from javascript | atlassian.com | 2021.17 | [
{
"text": "hi michael,\n\nthanks very much for the example code.\n\nif i change the contenttype to:\n\ncontenttype: 'multipart/form-data',\n\nthen it seems to work for me. can you see if that helps please?\n\nregards,\n\ndavid boyd\n\natlassian connect",
"name": "",
"is_accepted": true
}
] |
27577ec5c52062ae8a1e5c76780e449e | we are using confluence cloud.
we would like to populate a confluence page with data that is retrieved from an external site.
i tried the below
ap.request({
url: 'https://services.mycompany.com/api/v1/products',
type: 'get',
//data: {name: 'some text', description: 'test'}
success: functi… | how can i call an external rest api from within a generalpage module? | atlassian.com | 2021.17 | [
{
"text": "this one i can answer! short story: you might not be able to, but it’s not atlassian’s fault.\n\nyou don’t need to use ap.request(). you can simply use the feature of your browser – the xmlhttprequest or jquery’s wrapper if you have jquery:\n\n$.ajax({url: '...'}).success(function(data) { ... }).\n\nthe r…",
"name": "",
"is_accepted": true
}
] |
979eedd2bebeb0ecedb08245d749af98 | we have seen this really odd behavior that i cannot explain.
when looking at a pull request via the web interface, its “mergeability” is calculated by calling the merge check(s) activated in the target repository. that’s fine.
but, in some situations, also the hook(s) in the target repository are … | in addition to merge checks, also hooks are sometimes(?) called to verify pull requests: bug or feature? | atlassian.com | 2021.17 | [
{
"text": "this is intended and depends on how the hook was configured:\n\nyou can write hooks that are only called for pushes, or\n\nyou can also write hooks that are called for any ref change\n\nthe ‘mergeability’ check includes a so-called ‘dry-run’ invocation of the repository hook. based on this scenario, at th…",
"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.