box/box-ui-elements

Content Upload is showing status 200, but fails to load file to box account.

JohnAlfaJango opened this issue · 2 comments

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

Screen Shot 2022-05-20 at 9 37 20 AM
Screen Shot 2022-05-20 at 9 36 41 AM
Screen Shot 2022-05-20 at 9 36 34 AM

What am I missing? Thanks.

What else do you need from me to help with this issue? Thanks.

@JohnAlfaJango can you show us the request that you are receiving a 200?