Best practice: specify the Local SharePoint results source ID to gain search control
This post is over a year old, some of this information may be out of date.
When creating solutions based on SharePoint search, you best always define the source ID of the Local SharePoint results source with each call. By providing that source ID with each request, you make sure that the results you expect for your solutions are always the same.
Which ID?
The Local SharePoint results source ID you are looking for is: 8413cd39-2156-4e00-b54d-11efd9abdb89
.
How?
The “how” depends on the type of solution you are building. For instance, if you are using CSOM or REST APIs, this would be different.
REST API
In a REST API, it would look as follows: /_api/search/query?querytext='<your-query>'&sourceid='8413cd39-2156-4e00-b54d-11efd9abdb89'
.
CSOM API
KeywordQuery keywordQuery = new KeywordQuery(clientCtx){ QueryText = $"<your-query>", SourceId = new Guid("8413cd39-2156-4e00-b54d-11efd9abdb89")};
Why?
If your building custom solutions for environments, you do not control. It could mean that the results you were expecting are not the ones that SharePoint return. In most cases, the reason is that an admin changed the default result source, but that is not always the case.
Last week we ran into an interesting situation where results were different for app-only calls versus user calls to search. During a quick troubleshooting session with Mikael Svenson, we found that the quick fix was to include this source ID.
Be sure to always use it. That way, you keep control because the Local SharePoint results source cannot be changed.
Keep on searching
Related articles
Highlight on-premises search results in your hybrid configuration
Loading CSS from your display templates
Handling page creation events in your SPFx application customizer
Report issues or make changes on GitHub
Found a typo or issue in this article? Visit the GitHub repository to make changes or submit a bug report.
Comments
Let's build together
Manage content in VS Code
Present from VS Code