1,203 questions
Best practices
3
votes
1
replies
88
views
Training ChatGPT on Atlassian Products
I created a custom GPT at work so employees can ask it questions about Confluence and Jira as expert knowledge about those products is limited to only a few people. In the spirit of making it stronger,...
0
votes
0
answers
51
views
Getting data from jira
I'm not sure if this is impossible or I'm doing something wrong.
I have a team of about 20 - 30 people. Outside of our normal sprint work, we have bugs that come in for on call engineers. I want to ...
1
vote
0
answers
194
views
Embed a draw.io diagram into a confluence page through an API call
I got this python code that creates a new page in confluence through the API. Works fine. But i would also like to embed a draw.io diagram into that same page, with this script. The diagram could for ...
1
vote
0
answers
49
views
How can I access a database through the Atlassian Plugin Framework in Confluence?
I'm working on a Confluence plugin (not Cloud) and trying to allow the admin to write a custom SQL query in the UI. Once the query is written, a button should trigger the execution of the query, ...
0
votes
0
answers
393
views
Download Confluence Pages as PDFs via API using Python
I’m trying to download Confluence pages in a space as PDFs using the Confluence API and a Python script. However, I am unable to download the PDF despite manually being able to export pages via the ...
0
votes
1
answer
320
views
How to Retrieve Data from a Confluence Page with Table Transformer Macro via API
I am working with Confluence 8.5.12 (on-premise) and I need to extract data from a Confluence page that contains a table created using the Table Transformer Macro, which relies on SQL queries based on ...
-3
votes
1
answer
190
views
CSS for specific macro with confluence
I am trying to style the header of a panel in confluence by calling out a specific Macro.
I can style the panel header fine by using:
.panelHeader {
color:xxx
Font-Family:xxx
}
The issue is when I ...
1
vote
0
answers
53
views
Confluence API integration on wordpress site
We're trying to fetch Confluence page content on a WordPress site using the Confluence API. The API returns a response when tested via Postman, but it doesn't work on the WordPress page.
I've created ...
-1
votes
1
answer
341
views
Confluence Publisher throws A page with this title already exists: A page already exists with the same TITLE in this space
When publishing ascidoc Documentation via the docker-image confluence-publisher in my GitLab CI/CD Pipeline i got the error:
A page with this title already exists: A page already exists with the same ...
0
votes
2
answers
376
views
Goal: A best fit Markdown representation of a Confluence page with tables and images using Pandoc and shell scripts
I am working to create a ci/cd pipeline for "documentation-as-code", where a number of Confluence pages need to be converted to Markdown and moved to a GIT repo. The Confluence pages contain ...
-1
votes
1
answer
97
views
How do I get images to link to urls within my carousel?
I'm redesigning a confluence page that displays various visualizations. I am using the following code:
<div class="carousel">
<img src="image1.jpg">
<img ...
0
votes
0
answers
27
views
Proplem with Strapi client v4
I am watching a video in youtube tutorial working with strapi here is the link : https://www.youtube.com/watch?v=gPFbxwRGhiQ&list=PLVpp0SvtYtdfMvoSB1NwHq3J0MFHSz5FQ&index=17
at 4:34 ,You can ...
0
votes
1
answer
82
views
How to Resolve 'ascii' Codec Can't Decode Error When Generating Confluence Document with LaTeX Formulas Containing Cyrillic Characters Using Sphinx?
I am trying to generate a document for Confluence. The source data is an RST document containing LaTeX formulas, which sometimes include Cyrillic characters.
Here is my conf.py configuration file:
...
4
votes
1
answer
2k
views
In Confluence, how to replicate manual search with API search?
I am following the Confluence API search documentation to implement text search with CQL (confluence query language) in the company Confluence pages. Here is my code for a search query:
import ...
2
votes
0
answers
1k
views
Set Link to Table Row in Confluence
Problem:
I am trying to set a Link to a table row in confluence.
Attempted solution
I tried the Anchor macro to a table cell. I could create the anchor macro correctly
When I link to the Anchor macro (...
1
vote
1
answer
608
views
Display and automatically update the current version of Draw.io diagramm inside a the diagramm itself
In one of my projects I am using the Confluence Plugin draw.io (https://www.drawio.com/).
I am quite often exporting the diagram as a PNG from my Confluence page and will send it via E-Mail to ...
0
votes
1
answer
637
views
How can I call an external api and display its result in confluence page UI?
I am new to atlassian development. I am on cloud version of atlassian. I want to call an external api via http, and display its result in confluence page UI. I want that every new page that is created ...
-1
votes
1
answer
98
views
Implements an interface dynamically in Java
I'm running into an issue with implementing an interface dynamically and couldn't figure out how to achieve that. Here is my problem:
I'm developing a plugin application for Confluence, I have a class ...
-2
votes
1
answer
464
views
How add events to Confluence calendar with JS API?
I'm trying to find any information on how I can create an event in Team Calendar in Confluence, but I can't find anything useful for JS. The official documentation is missing, and there are only ...
0
votes
1
answer
241
views
js net::ERR_ABORTED 404 (Not Found)
I use Allure report in Azure DevOps, and hosted this report in Azure Storage Account. I want share this report in my confluence page. For implement this i use macro "HTML include". But when ...
2
votes
2
answers
2k
views
Confluence read database via REST API
Confluence provides the new feature to create a database page:
Now I would like to acces the data entered in such a database via API. Unfortunately I cannot find any documentation on how to do so.
I ...
1
vote
1
answer
484
views
How to Access Number of Views for Pages on Data Center (On-prem) Confluence?
I am working with Confluence Data Center in an on-premises environment and I'm looking for a way to access the number of views for specific pages programmatically. I've been searching through the ...
0
votes
1
answer
1k
views
langchain.document_loaders.ConfluenceLoader.load giving AttributeError: 'str' object has no attribute 'get' while reading all documents from space
When I try sample code given here:
from langchain.document_loaders import ConfluenceLoader
loader = ConfluenceLoader(
url="<my confluence link>", username="<my user name&...
0
votes
1
answer
84
views
How to select all text in Confluence expand macro in mac
I am trying to find a way to select all text in a expand macro on confluence page on Macbook pro.
i.e. How to select all text in expand macro on confluence page?
0
votes
1
answer
32
views
Calling a end point in confluence wiki page
I have a endpoint point which has a body..I want to take values of end point from confluence (wiki) and then call that endpoint with confluence scripting. Can any one provide me a detail steps on how ...