Open celloist opened 5 years ago
@celloist That is not expected behavior. Just to be clear, some%20%20%20value becomes some%20value in both the OneDrive UI and in the API response?
@MIchaelMainer i am not sure i just know what the api response returns (just backend)
Thank you for reporting this issue. This appears to be an issue or limitation with the service APIs. Unfortunately, as the Microsoft Graph SDK team, we do not have ownership of the APIs that are causing you issues. We invite you to create a question about the service API to Microsoft Q&A and tagged with one of the [microsoft-graph-*] tags, that way it will get routed to the appropriate team for them to triage:
https://aka.ms/msgraphsupport or directly https://aka.ms/askgraph
For now, we will close the issue on our side but feel free to open it in the relevant repository if you think the issue is specific to SDK. Please let us know if this helps!
Note: We will close this repository on April 19, 2024.
When uploading to drive via the graph api we url encode the name of the file which works for everything except space. This is just kept as + when decoded on the graph side so we manually change it to %20 after decoding it. Also when you use more then one space it cuts it to one space e.g. filename: some%20%20%20value becomes some value when uploaded to drive, are these expected behaviors?
AB#7292