Confluence Cloud API - 403

Christoph Reg August 23, 2017

I'm having trouble with using the AP.request method in the Javascript client.

I have created a Plugin which shows a custom page (general page) inside Jira.

From this page, I want to create a Confluence content page via the AP.request method of the Javascript client.

Working with the JIRA API via AP.request works fine, but when I try to call any method of the Confluence API it always fails with 403, no matter the endpoint I'm using.

Here is an example request that fails:

 

const data = {
          title: "test",
          "type": "page",
          "space": {
            "key": 'REL',
          },
          "body": {
            "storage":{
              "value": "<p>TEST TEST</p>",
              "representation": "storage",
            },
          },
};

AP.request({
        type: 'PUT',
        contentType: 'application/json',
        url: '/wiki/rest/api/content',
        data: JSON.stringify(data),
        success: (resp) => {
          console.log(resp);
        },
        error: (xhr, status, err) => {
          console.log(status);
        },
      });

What am I doing wrong here?

Do I need to specifically request a scope for Confluence in the addon descriptor?

Do I need to enable something in the settings?

1 answer

0 votes
Shannon S
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 24, 2017

Hi Christoph,

  1. Can you check and see if when you login to the instance using the same credentials can you add or modify a page in that space? 
  2. Does the space REL already exist? Since you're using the method PUT it only works to update and not create. Otherwise, you'll want to use POST. See our API documentation here:
    Create content: POST /rest/api/content

Kind Regards,
Shannon

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events