Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
Shy1
4 years agoExplorer | Level 3
It must exactly match one of the redirect URIs you've pre-configured for your app (including the pat
I'm completely confused. I do it according to the documentation, if I make a link with my hands in my browser and insert the AppiKey, then everything works, if I try to do it through the code, ...
Shy2
4 years agoNew member | Level 2
yes, I have it registered, because I can read. I get a response from the correct link, but my bowser gets the following error and the code exits without any exceptions, it just dies out. if I go through the debugger then I get to the HandleJSRedirect and everything ends there and if not through the debugger, then it ends on the process call Process.Start(); I do not understand anything
ERR_CONNECTION_REFUSED link what i have but i cant work with her and link down
maybe it's how i run it?
static void Main(string[] args)
{
Program program = new Program();
var task = Task.Run(program.MainRun);
task.Wait();
}
public async void MainRun()
{
var accessToken = await this.GetAccessToken();
}
Здравко
4 years agoLegendary | Level 20
Shy2 wrote:... if I go through the debugger then I get to the HandleJSRedirect and everything ends there ...
On the previous call (call to 'HandleOAuth2Redirect') you have to send back to the browser a 'index.html' file (actually almost entire javascript content), responsible for additional redirection that seems missing. Are you sure correct content got the way? 🧐 You usually can debug/check this using the embedded browser tools (trace the communication). After the second redirect your browser should get redirected to something like:
http://127.0.0.1:4200/token?url_with_fragment=...Does this happen?
- Shy14 years agoExplorer | Level 3
if I take an example from github, and just change the AppKey and AppSecret and set my port, then everything goes fine and I get the following error: an error occurred while sending the request at the moment Exchanging code for token
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!