How can Upload the Docx, Doc file on Cloud Server Storage

76 Views Asked by At

I have uploaded as per Oracle Documentation but didn't get in same format. here is postman screenshot next when get request for same file is here after getting from server.my docx file
please let me know what i missed. thanks in advance.

1

There are 1 best solutions below

0
char On

You used POST in your postman call, instead of PUT. POST in this case is used as the command for creating or updating the metadata, not the object.

Try it with PUT instead.

See the Oracle Cloud Storage documentation for this as well.