You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 30, 2025. It is now read-only.
Hello, in documentation OAuth Request Url obtained in this way:
var authRequestUrl = await client.Core.OAuth2.AuthorizeAsync("code");But in the latest version has changed and I can not use this code. I use this:
var authRequestUrl = client.Core.OAuth2.Authorize("code");But this code shows the error:
unknown field "code"RedirectUri looks:
RedirectUri = "https://www.dropbox.com/1/oauth2/authorize?client_id=stgpc2qpkvcnlmj&response_type=code"What am I doing wrong?