I'm converting Dropbox features from v1 to v2. In Dropbox v1 I'm fetching metadata using the below code-
RequestResult strReq = OAuthUtility.Get
(
"https://api.dropbox.com/1/metadata/auto/",
new HttpParameterCollection
{
{ "path", "" },
{ "access_token", "AccessToken" }
}
);
Now I want to make the same call in Dropbox API v2.I have seen the example mentioned at https://www.dropbox.com/developers/documentation/http/documentation#files-alpha-get_metadata
I couldn't find the proper syntax to get the metadata for files/ folders in v2.If anyone has any idea or sample code how to call the same thing in Dropbox v2 please share.