RobinDeSchepper
- Total activity 28
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 8
Activity overview
Latest activity by RobinDeSchepper-
RobinDeSchepper commented,
Nevermind, while looking around in a function I use to make the request I discovered that the variables for both the id of the file to be moved and the id of the parent folder were the same result...
-
RobinDeSchepper commented,
They're a test file and folder that are created in the line above with the same (only) access token. Any other idea? It can also be deleted again by this token the lines beneath it, given the same...
-
RobinDeSchepper created a post,
Attempting to update file info returns "invalid parameter" item error
AnsweredHi there When trying to move an item I send a request that updates the parent id of a file and it returns an error 404 with reason "invalid parameter" item. But there is no item parameter as far a...
-
RobinDeSchepper commented,
So for anyone with similar problems, the solution in Guzzle is to give a file handle instead of a string as the contents field of your multipart param. The file handle will read the contents of th...
-
RobinDeSchepper commented,
Yes I'm building it manually using Guzzle, I think the critical difference between our requests is that I'm sending the file contents as a regular part of the form-data and yours is recognized as ...
-
RobinDeSchepper commented,
There's multiple ways to Rome, but in the end the Box API always requires a token to connect. I'm not familiar with the Java SDK so I can't answer what the string arguments mean. The developer tok...
-
RobinDeSchepper created a post,
Empty response with code 400 during file upload
AnsweredHi I'm trying for the first time to upload a file through the https://upload.box.com/api/2.0/files/content endpoint and I receive the error code 400 but unlike other times that I've received this ...
-
RobinDeSchepper commented,
You can use the Search endpoint or you can search through the names in an item_collection of a folder and go down the path tree that way. https://developer.box.com/reference#searching-for-contenth...
-
RobinDeSchepper created a post,
Delay before newly created group can be found by name
AnsweredHi When I create a new group and try to find it immediatly afterwards through the groups/ endpoint with the name query param set it returns 0 results. But the same program, with 10-15 seconds slee...
-
RobinDeSchepper commented,
So fixed this one: the login parameter is only required when you're missing the user id, which was why I was getting this error. When you enter a valid (app)user id it doesn't ask for the login pa...