Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to get Content ID in a View (.hbs file), or how does getContext() returns it?

Hauke Hörhold
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2021 edited

I am building a Confluence Cloud App with Connect. I want to get the Page ID (Content ID) of the page, where the Macro is put on. I'm working in the View-Folder of my Connect-App in a .hbs-file.

I can get the ID by using getContext(), but I can't put it in a variable for later usage, because of the scope.

Like this I can see the ID in the console:

AP.context.getContext(function(response) {
console.log = response.confluence.content.id;
});

 But what I really need would be something like this (which doesn't work):

var pageID;
AP.context.getContext(function(response) {
pageID = response.confluence.content.id;
});
console.log(pageID);

I need to somehow return the ID via the callback function? How can I do it?

Or is there a simpler way? I could only find this resource: https://developer.atlassian.com/cloud/confluence/jsapi/context/

1 answer

1 accepted

0 votes
Answer accepted
Hauke Hörhold
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 6, 2021

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events