Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update troubleshoot-confluence-onpremises-connector.md #329

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion MicrosoftSearch/troubleshoot-confluence-onpremises-connector.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,24 @@ description: "Troubleshoot issues with the Confluence On-premises Graph Microsof
| Connection settings | The client doesn't have permission to perform the action. | Invalid password provided for Basic auth |
| Select properties | No preview results | Check your CQL query whether it's valid and matches the content to crawl |

If you have any other issues or want to provide feedback, write to us [aka.ms/TalkToGraphConnectors](https://aka.ms/TalkToGraphConnectors).
If you have any other issues or want to provide feedback, write to us [aka.ms/TalkToGraphConnectors](https://aka.ms/TalkToGraphConnectors).

# Test your connection
### a) To check active pages on confluence instance
### b) To check the list of spaces that account has access to

Please run the below URL in browser or postman with the same cred used for connection creation.
Note: Confluence space API will fetch maximum 500 spaces in a call, so we can split the request if we have more spaces

The URL is <ConfluenceURL/rest/api/space?limit=500&start=0>

At the end of response we can see output similar to:

```
"start":0,
"limit":500,
"size":500,
```

For more than 500 pages, to get next set of pages of response run the URL in following format:
The URL is <ConfluenceURL/rest/api/space?limit=500&start=500>