fileupload api Unsupported Media Type Hi, Please let me solution.
I created a program in nodejs to upload the following file, but it is "Unsupported Media Type".
The program is able to get the number of files, etc.I think the token is correct.
Is there something I am using wrong in the upload section?
const fs = require('fs')const crypto = require('crypto')const jwt = require('jsonwebtoken')const axios = require('axios')const querystring = require('querystring');const config = JSON.parse( fs.readFileSync('config.json'))let run = async () => { // In node we don't need to manually decrypt the // key, as the JWT library can handle this for us let key = { key: config.boxAppSettings.appAuth.privateKey, passphrase: config.boxAppSettings.appAuth.passphrase } // We will need the authenticationUrl again later, // so it is handy to define he