I have given an appkey to access a dropbox app, I create an authorize url using this -
Uri authorizeUri = DropboxOAuth2Helper.GetAuthorizeUri(OAuthResponseType.Token, AppKey, RedirectUri, state: oauth2State);
Then once the authorize Uri generated, I used this to generate access Token by browsing the url and providing my dropbox credentials (dropbox belong to some organization account).
Now the access token generated and I am trying to read the files, upload the files, view the files/folders then I am getting path not found. Therefore not sure this access token is accessing which path.
Note: I generated the access toke with my dropbox account with above process and I can do all operation under Apps/<App Folder>.
I am not getting help related to this, all i need is simple explanation with few lines of code.
Thanks.
Vikas Garg