DropboxRestAPI icon indicating copy to clipboard operation
DropboxRestAPI copied to clipboard

authorize code

Open maxdiable opened this issue 6 years ago • 0 comments

hi, i used: var authRequestUrl = client.Core.OAuth2.Authorize("code");

        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(authRequestUrl);
        request.ContentType = "text/json";
        request.Method = "GET";
        request.AllowAutoRedirect = true;
        HttpWebResponse response = (HttpWebResponse)request.GetResponse();

but the request not return code

any Help?

maxdiable avatar Apr 24 '18 13:04 maxdiable