Hi
In our Website, written with ASP.NET and C#, we want to use .NET API to get shared link for a file. I found the method for this purpose named: CreateSharedLinkWithSettingsAsync() but all my tries in passing path argument, result in these errors:
System.ArgumentOutOfRangeException: Value should match pattern '\A(?:(/(.|[\r\n])*|id:.*)|(rev:[0-9a-f]{9,})|(ns:[0-9]+(/.*)?))\z'
[Dropbox.Api.Sharing.CreateSharedLinkWithSettingsError]: path/not_found/
[Dropbox.Api.Sharing.CreateSharedLinkWithSettingsError]:path/malformed_path/
I understood from the first error that I should put an '/' at the beginning of the path, but canot solve other errors.
please help me