You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
ER2480
4 years agoExplorer | Level 4
NetworkError when attempting to fetch resource when trying to share file using javascript sdk
Hi,
I am very new to the Dropbox SDK, I am trying to programmatically create a link for sharing a file and getting the above error:
NetworkError when attempting to fetch resource when trying to s...
- 4 years ago
Thanks! It looks like the issue here is that when you click "Share File", that causes the page itself to reload (since you're submitting a form), which interrupts the Dropbox API call.
You should update or restructure your page to avoid that reload. That's not really related to the Dropbox API itself, but it looks like this StackOverflow post may be relevant.
ER2480
Explorer | Level 4
Hi, here are some more details about the error:
- Is that the full error output you receive? Please share any other output.
TypeError: Failed to fetch
Dropbox-sdk.min.js:1 Fetch failed loading: POST "https://api.dropboxapi.com/2/sharing/create_shared_link_with_settings".
(anonymous) @ Dropbox-sdk.min.js:1 Promise.then (async) value @ Dropbox-sdk.min.js:1 value @ Dropbox-sdk.min.js:1 h.sharingCreateSharedLinkWithSettings @ Dropbox-sdk.min.js:1 shareFile @ testDropbox.php:155 onsubmit @ testDropbox.php:36
Navigated to http://......
Dropbox-sdk.min.js:1 POST https://api.dropboxapi.com/2/sharing/create_shared_link_with_settings 409
testDropbox.php:160 DropboxResponseError: Response failed with a 409 code at https://unpkg.com/dropbox/dist/Dropbox-sdk.min.js:1:30363
Dropbox-sdk.min.js:1 Fetch failed loading: POST "https://api.dropboxapi.com/2/sharing/create_shared_link_with_settings".
Navigated to http://..........
- What version of the SDK are you using?
- How are you importing the SDK?
- What environment are you running this in? (Browser or node, and what version, for instance.)
- Firefox/Chrome/Safari similar errors everywhere --> local website using php and javascript
- Is there anything on your network connection that may be interfering with connections to api.dropboxapi.com?
I don't think so because I successfully implemented the file upload using js and the file browser for the same account and using the same token so the connection should be fine.
Greg-DB
4 years agoDropbox Staff
Thanks! That's helpful. From this output, I see you are getting an API error (with a 409 status code).
You can print out the API error object like to see the endpoint-specific error:
.catch(function(error) {
console.log(error.error);
});
- ER24804 years agoExplorer | Level 4
Thank you so much for the suggestion. I tried it but it returns .."undefined".
Am I using the correct sdk version?
- Greg-DB4 years agoDropbox Staff
From your script tag, you're using the latest version, which should work. (Though for reference, in a production app we recommend you import a specific version, since the SDK may occasionally receive major updates with breaking changes.)
I can't seem to reproduce the "undefined" issue you're seeing though. Would you be able to share a live sample page showing the issue?
- ER24804 years agoExplorer | Level 4
Yes, here is a temporary file on a beta site
https://cdfbeta.creativedecisions.net/_admin/testDropbox.php?
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,889 PostsLatest Activity: 2 hours agoIf 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 or Facebook.
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!