Dropbox You have configured a Redirect URI for OAuth2 authentication.
- http://127.0.0.1
- http://127.0.0.1:port
I have coded the following code in C #.
----------------------------------------------------------
string redirectURI = "http://127.0.0.1:56207";
string requestURI = "https://www.dropbox.com/oauth2/authorize?response_type=token&redirect_uri=http://127.0.0.1:56207&client_id=4tb5otn53umkiro&state=W1LlGGzWZXqpv68QU-d3wrGbOFviArFeVyvdXQBX7u4";
HttpListener httpListener = new HttpListener();
httpListener.Prefixes.Add("http://127.0.0.1:56207/");
httpListener.Start();
System.Diagnostics.Process.Start(requestURI);
----------------------------------------------------------
The result is Error (400).

What is wrong with it?