I'm a beginner in c# and for some time i'm trying to figure out how to get the share link from a file I uploaded on dropbox.I'd be very grateful if you help me with this problem.
Asked
Active
Viewed 226 times
1 Answers
0
Have a look at the Shares API.
You need to make a web request to
https://api.dropbox.com/1/shares/auto/<path>
where <path>
is the file or folder you want to link to.
That call will return a JSON object, which is a string formatted in a particular way to represent serialized object data.
Have a look at WebClient to make the request. There are several options available to convert the JSON response into an object (that is, to deserialize it).
Try to write some code using this guidance. If you get stuck, post a new question, include your code, and explain where you are stuck.