We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
neunygph
8 years agoExplorer | Level 4
Dropbox JavaScript SDK vs Dropbox saver JavaScript
Hello,
I'm just starting to use Dropbox JavaScript SDK from http://dropbox.github.io/dropbox-sdk-js/Dropbox.html on my client side. But there is a conflict when using both refrences from
...
- 8 years ago
These libraries weren't written with each other in mind unfortunately, but you can do something like this to work around it:
<script src="https://www.dropbox.com/static/api/2/dropins.js" id="dropboxjs" data-app-key="riqoimk2j9c8d1m" ></script> <script type="text/javascript"> var Dropbox_Dropins = Dropbox; </script> <script src="https://unpkg.com/dropbox/dist/Dropbox-sdk.min.js" ></script> <script type="text/javascript"> var Dropbox_SDK = Dropbox; </script>
And then you can use Dropbox_Dropins or Dropbox_SDK in place of Dropbox respectively.
Greg-DB
Dropbox Staff
These libraries weren't written with each other in mind unfortunately, but you can do something like this to work around it:
<script src="https://www.dropbox.com/static/api/2/dropins.js" id="dropboxjs" data-app-key="riqoimk2j9c8d1m" ></script> <script type="text/javascript"> var Dropbox_Dropins = Dropbox; </script> <script src="https://unpkg.com/dropbox/dist/Dropbox-sdk.min.js" ></script> <script type="text/javascript"> var Dropbox_SDK = Dropbox; </script>
And then you can use Dropbox_Dropins or Dropbox_SDK in place of Dropbox respectively.
neunygph
8 years agoExplorer | Level 4
Ah I see, I didn't think of that :)
Thanks Greg.
Thanks Greg.
- neunygph8 years agoExplorer | Level 4
Hi Greg,
For drobox pin, is data-app-key value always "riqoimk2j9c8d1m" ?
Thanks,
- Greg-DB8 years agoDropbox StaffThat's just the app key you supplied in your original post. When loading the dropins library, that should always be the app key for the app you want to use the Chooser with. The "riqoimk2j9c8d1m" value does seem to be a valid app key for your app, so that's fine.
- neunygph8 years agoExplorer | Level 4
Oh ok, thanks Greg.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 8 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!