Need to see if your shared folder is taking up space on your dropbox 👨💻? Find out how to check here.
Forum Discussion
mbvistaprint
4 years agoHelpful | Level 5
Shared File Link Issues
Hi,
I'm writing to find out if anyone knows of any changes to the Drop Box service around 2/9, 2/10 that may have changed how file information is shared when using the Shared Link. For con...
mbvistaprint
4 years agoHelpful | Level 5
Hi Greg,
I don't know exactly what the response is since I'm just seeing the error returned by our code. I can share with you the call we're making though if that might help:
private bool IsImageLargerThanThreshold(string url) { RestClient tempClient = new RestClient(url); RestRequest tempRequest = new RestRequest(Method.HEAD); tempRequest.AddHeader("Accept", "*/*"); IRestResponse response = tempClient.Execute(tempRequest); if (response.StatusCode == HttpStatusCode.OK) { return response.ContentLength > _asynchThresholdInBytes; } throw new VcsValidationException("Unable to determine file size"); }
And then we are throwing the exception at the bottom. That's all I'm able to actually see in our logs unfortunately but hoping seeing what we are doing might help. I can confirm that shared links from other sharing services (ex. Files shared out of Shopify) work just fine and until last week Dropbox was also working fine. Unfortunately we have at least 2 (possibly more) of our main API customers using dropbox for their image share so they can't place print orders with us at the moment.
-Melissa
Здравко
4 years agoLegendary | Level 20
Hi mbvistaprint,
To see the headers received, you can dump "Headers" property of your "response", if you want. 😉
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!