9 lines
338 B
JavaScript
9 lines
338 B
JavaScript
|
import { auth, basename } from './utils'
|
||
|
import { postWithTimeout } from '../_utils/ajax'
|
||
|
|
||
|
export async function uploadMedia (instanceName, accessToken, file) {
|
||
|
let formData = new FormData()
|
||
|
formData.append('file', file)
|
||
|
let url = `${basename(instanceName)}/api/v1/media`
|
||
|
return postWithTimeout(url, formData, auth(accessToken))
|
||
|
}
|