We are aware of the issue with the badge emails resending to everyone, we apologise for the inconvenience - learn more here.
Forum Discussion
bffy_smmmers
4 years agoHelpful | Level 5
Re: Get thumbnail with TypeScript
hey Greg-DB - when i try that, i get the following:
TypeError: fetch is not a function at /Users/rosiew/Repositories/backend/packages/rest/.webpack/service/handler.js:441710:16 at processTick...
bffy_smmmers
Helpful | Level 5
Greg-DB Looks like this for the most part...
import { Dropbox, DropboxAuth, files } from 'dropbox_new';
import fetch from 'node-fetch';
export class DropboxApi {
private client: Dropbox;
private manager: Manager;
private constructor(client: Dropbox) {
this.client = client;
}
static async initialize({ accessToken, }: DropboxCredentials) {
return new DropboxApi(new Dropbox({ accessToken, fetch }));
}
async getThumbnail(path: any) {
return this.manager.execute(async () => {
const data: any = this.client
.filesGetThumbnail({ path })
.then((response: any) => {
console.log('got filesGetThumbnail response:');
console.log(response);
console.log('got thumbnail data:');
console.log(response.fileBlob);
})
.catch(error => {
console.log('got filesGetThumbnail error:');
console.log(error);
});
Greg-DB
4 years agoDropbox Staff
What version of 'dropbox' did you install, and how did you install it? Also, why is it 'dropbox_new' instead of just 'dropbox'?
You should ideally install the latest version, via npm, and then not manually pass in the fetch yourself. See here for a note on this: https://github.com/dropbox/dropbox-sdk-js/blob/main/UPGRADING.md#5-default-behavior-for-fetch
- bffy_smmmers4 years agoHelpful | Level 5
Greg-DB the latest version 9.2.0. We're using a monorepo structure and instaling with yarn and so i had to add the package local to this repo by aliasing the package name, so it wouldnt keep pointing to the older versions of dropbox that are being used elsewhere in the root directory.
- Greg-DB4 years agoDropbox Staff
Can you confirm node-fetch is also successfully installed? The 'dropbox' library lists it as a dependency (currently "^2.6.1"). And have you tried not passing in 'fetch' explicitly as noted?
- bffy_smmmers4 years agoHelpful | Level 5
Greg-DB it is! Using: "node-fetch": "2.6.1".
In the past when I've tried I've received a different error. and i just tried it again and got this: `TypeError: _this.fetch is not a function`.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
5,877 PostsLatest Activity: 12 months 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!