akubatoor
- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 3
Activity overview
Latest activity by akubatoor-
akubatoor created a post,
Shortcomings in Box APIs
While I'm exploring the Box APIs what I found out was that to work with any Files or Folders the API expects a File Id or a Folder ID. In my opinion these IDs are something generated internally by...
-
akubatoor commented,
In that case if I need to update the file with additional data then I need to read the file contents with in my application and then append the data and upload as a new version. Correct ?
-
akubatoor commented,
Yeah right..I also had changed the code a little bit to get this working. I changed it something like below if (!fileExists) { FileInputStream stream = new FileInputStream(pathFile...
-
akubatoor created a post,
Appending Data to existing File
AnsweredI currently have a need to append data to an existing File. I couldn't find a suitable API to do that. What is the best possible way to append data to an existing File?
-
akubatoor commented,
I don't think I'm giving any invalid file name. I'm trying to upload a file with the name taxdoc.txt. Below the API response I'm seeing {"type":"error","status":400,"code":"bad_request","context_i...
-
akubatoor commented,
The response is 400 item_name_invalid
-
akubatoor created a post,
400 item_name_invalid
While I'm trying to upload a file using Java code I'm getting the following API response. 400 item_name_invalid. Can someone tell me what exactly might be the issue.
-
akubatoor created a post,
API error while trying to upload File
AnsweredUsing the Java SDK I'm trying to upload a test file but getting the below API exception Exception in thread "main" com.box.sdk.BoxAPIException: The API returned an error code: 400at com.box.sdk.Bo...
-
akubatoor commented,
I'm trying to develop a Java application which will run on AWS and upload the Files to Box.com account securely. It is just a batch process looking for File storage and not behalf of any end user...
-
akubatoor commented,
Thanks again for a quick response. So in my case to use a java application to upload files to Box, do I need both service account and an app user account ?