msgraph-sdk-dotnet icon indicating copy to clipboard operation
msgraph-sdk-dotnet copied to clipboard

[Client bug]: Missing allowExternal query parameter for /me/drive/sharedWithMe

Open MartinM85 opened this issue 10 months ago • 0 comments

Describe the bug The query parameter allowExternal is missing. Mentioned here

var result = await m_client.Drives["{drive-id}"]
    .SharedWithMe
    .GetAsync(requestConfiguration => 
    {
        requestConfiguration.QueryParameters.AllowExternal = true;
    });

To Reproduce Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Client version 5.24

Desktop (please complete the following information):

  • OS: [e.g. iOS]
  • Browser [e.g. chrome, safari]
  • Version [e.g. 22]

Additional context Add any other context about the problem here.

MartinM85 avatar Aug 28 '23 05:08 MartinM85