Content Upload is showing status 200, but fails to load file to box account.
JohnAlfaJango opened this issue · 2 comments
JohnAlfaJango commented
Here is the box-ui-elements call that we are using (../components/ContentUploader)
import React from "react"
import React from "react"
import { IntlProvider } from 'react-intl';
import ContentUploader from 'box-ui-elements/es/elements/content-uploader';
function BoxFileUpload ({ props }) {
console.log('Uploader props: ', props)
return(
props.project.isLoading ?
<p>Loading...</p>
:
<IntlProvider locale="en">
<ContentUploader
language='en-US'
token={props.project.data.attributes["box_access_token"]}
rootFolderId={props.id}
isFolderUploadEnabled={true}
/>
</IntlProvider>
)
}
export default BoxFileUpload
What am I missing? Thanks.
JohnAlfaJango commented
What else do you need from me to help with this issue? Thanks.
greg-in-a-box commented
@JohnAlfaJango can you show us the request that you are receiving a 200?