...
- The webpart must be configured for each site that uses the webpart for federated search in that site's settings console. This issue is tracked by
.Jira Legacy server Communardo Jira serverId 40ebf4e9-af73-381d-8ee9-1907c74966d1 key CSI-144 - The login used in the webpart configuration must be a Confluence Administrator in order to successfully authenticate into Confluence during the search. This will not grant visibility to pages that the user initiating the search isn't supposed to see. Their login will be impersonated by the webpart after initial authentication as an admin and the results will be trimmed.
Make sure that the URL specified can be run in Confluence side by hitting it directly. For example, if the URL in the config looks like this:
Code Block http://my-confluence/plugins/servlet/opensearch/1.0?query={searchTerms}&format=rss_1.0&os_authType=basic
Try to access this URL (by replacing the {searchTerms} with the search keyword accordingly) in the browser and see if you could get RSS result as a response, otherwise, that means the URL is incorrect and needs to be fixed:
Code Block http://my-confluence/plugins/servlet/opensearch/1.0?query=foobar&format=rss_1.0&os_authType=basic
...