CSOM: Microsoft.SharePoint.Client.ServerException: No User or App Context found

Konstantin Hvan 21 Reputation points
2022-05-19T07:18:38.387+00:00

Hi,

I've got the exception when using SharePoint Search API:

Microsoft.SharePoint.Client.ServerException: No User or App Context found

my code works fine on one SharePoint site, but on another it fails with above error.
My code is just a simple search query:

        KeywordQuery keywordQuery = new KeywordQuery(_context);
        keywordQuery.StartRow = startIndex;
        keywordQuery.QueryText = $"IsDocument:1";
        keywordQuery.RowLimit = _searchPagesChunkLimit;
        keywordQuery.RowsPerPage = _searchPagesChunkLimit;
        keywordQuery.TrimDuplicates = false;
        SearchExecutor searchExecutor = new SearchExecutor(_context);
        ClientResult<ResultTableCollection> results = searchExecutor.ExecuteQuery(keywordQuery);
        _context.ExecuteQuery();

Please help.
Thanks.

SharePoint Development
SharePoint Development
SharePoint: A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.Development: The process of researching, productizing, and refining new or existing technologies.
2,668 questions
0 comments No comments
{count} votes

Accepted answer
  1. Tong Zhang_MSFT 9,116 Reputation points
    2022-05-30T06:52:25.853+00:00

    Hi @Konstantin Hvan ,

    I'm glad to hear you solve the problem ,if you have any issue about SharePoint, you are welcome to raise a ticket in this forum.

    By the way, since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others." and according to the scenario introduced here: Answering your own questions on Microsoft Q&A, I would make a brief summary of this thread:

    [CSOM: Microsoft.SharePoint.Client.ServerException: No User or App Context found]

    Issue Symptom:
    I've got the exception when using SharePoint Search API:

    Microsoft.SharePoint.Client.ServerException: No User or App Context found  
    

    my code works fine on one SharePoint site, but on another it fails with above error.
    My code is just a simple search query:

    KeywordQuery keywordQuery = new KeywordQuery(_context);  
         keywordQuery.StartRow = startIndex;  
         keywordQuery.QueryText = $"IsDocument:1";  
         keywordQuery.RowLimit = _searchPagesChunkLimit;  
         keywordQuery.RowsPerPage = _searchPagesChunkLimit;  
         keywordQuery.TrimDuplicates = false;  
         SearchExecutor searchExecutor = new SearchExecutor(_context);  
         ClientResult<ResultTableCollection> results = searchExecutor.ExecuteQuery(keywordQuery);  
         _context.ExecuteQuery();  
    

    Current status:

    The application lacks rights, specifically it's Sites.ReadAll

    You could click the "Accept Answer" button for this summary to close this thread, and this can make it easier for other community member's to see the useful information when reading this thread. Thanks for your understanding!


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Tong Zhang_MSFT 9,116 Reputation points
    2022-05-19T09:23:58.417+00:00

    Hi @Konstantin Hvan ,

    This error means that the user or app context was not found ,please check if the query content exist with the site, and check if you are connected to your site correctly.

    More information for reference:
    https://learn.microsoft.com/en-us/sharepoint/dev/general-development/using-the-sharepoint-search-query-apis#query-using-the-net-client-object-model
    https://learn.microsoft.com/en-us/sharepoint/dev/general-development/sharepoint-search-rest-api-overview


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



  2. Konstantin Hvan 21 Reputation points
    2022-05-29T16:43:24.097+00:00

    Well, we've found out what was the problem - it's a lack of rights for the application, specifically it's
    Sites.ReadAll
    I wish the error message would be more informative.

    0 comments No comments