Your workflow is unique 👨💻 - tell us how you use Dropbox here.
Forum Discussion
2-M
8 years agoExplorer | Level 3
Does new Dropbox version required SSL for my website to communicated
There is Erorr while Uploading Issue Image into dropbox: {"error": "v1_retired"} I know i have updated my code due to change in version can you provide me the link that will guide me.
Greg-DB
Dropbox Community Moderator
8 years agoThat `v1_retired` error does indicate that you're attempting to make an API v1 call, which is retired:
https://blogs.dropbox.com/developers/2016/06/api-v1-deprecated/
You should update your app to use API v2:
https://www.dropbox.com/developers
There's a migration guide here:
https://www.dropbox.com/developers/reference/migration-guide
All Dropbox API calls, both API v1 and v2, must be made over SSL/TLS, though this doesn't mean that your site itself needs to be served over https.
The OAuth 2 app authorization flow doesn't allow http:// for redirect URIS though, so if you don't have an https:// redirect URI, you can omit the redirect URI entirely when using the 'code' flow:
https://www.dropbox.com/developers/documentation/http/documentation#authorization
https://blogs.dropbox.com/developers/2016/06/api-v1-deprecated/
You should update your app to use API v2:
https://www.dropbox.com/developers
There's a migration guide here:
https://www.dropbox.com/developers/reference/migration-guide
All Dropbox API calls, both API v1 and v2, must be made over SSL/TLS, though this doesn't mean that your site itself needs to be served over https.
The OAuth 2 app authorization flow doesn't allow http:// for redirect URIS though, so if you don't have an https:// redirect URI, you can omit the redirect URI entirely when using the 'code' flow:
https://www.dropbox.com/developers/documentation/http/documentation#authorization
About Dropbox API Support and Feedback
Get help with the Dropbox API from fellow developers and experts.
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!