Hi Atlassian Devellopers ,
i am develloping a Macro in add-on on confluence cloud , i am using nodeJS and ExpreeJs and i want to add PROPERTY called “spgviewspage”
to the meta-data of a confluence page with ID equal to pageId ( i get it via GET methode using rest api call )
i didn’t find a clearly documentation that describe : how the POST methode for sending Data it can be , contrariwise i found a tutorial which explain the GET methode here is the link: https://developer.atlassian.com/confcloud/lesson-2-rise-of-the-macros-39987235.html , so i tried to impliments a post methode bellow using the same concept.
getHTTPClient(clientKey,userKey).post('/rest/api/content/pageId/property/',function (req, res) {
var con=JSON.stringify(res)//valeur JavaScript en chaîne JSON
var newViwspage = {"key":"spgviewpages","value":0};
req.send(JSON.stringify(newViwspage));
but it display me an error message "req.send is not a function "
i am stack in this for more than a week i realy need #HELP
Reagrds Basma