Questions tagged [boxsdk]
22 questions
0
votes
1 answer
BoxSearch logging response
I am working on BoxSDK Java and I am attempting to capture the response from BoxSearch. As shown in their sample code:
https://developer.box.com/guides/search/
I am unable to capture the JSON response from searchResults.
If I print this as toString…

Terrenus
- 13
- 2
0
votes
1 answer
box-sdk python or CURL to check if a folder exists using Folder Name
I need to upload a file to a folder inside box.
I chose python to implement this logic at server side.
But I find that box-sdk python doesn't supports to check if a folder exists with its name?
Is there any way to check if a folder exists just with…

That Coder
- 11
- 4
0
votes
1 answer
Box SDK created_by shows anonymous but I can see "uploader" in the Box UI
I am using the boxsdk to list all files in a box folder
request_url = f"https://api.box.com/2.0/folders/{folder_id}/items"
request = self.client.make_request("GET", request_url, params={"limit": limit, "offset": offset,
…

MarcelD
- 93
- 5
0
votes
0 answers
Why am I getting an error when trying to authenticate on BoxSDK?
I am trying to create a client object which I would like to use to upload files to a folder in my Box (as in, the cloud storage method). I am using boxsdk in Python as an API with an application that I just made. I've been using this code, which I…

Whitesnack
- 1
- 1
0
votes
1 answer
File size 5622620 less than minimum allowed for this API: ''20000000', Python Box-SDK
While uploading files to box it gives an error says File size is less than required. Here is my code:
import os
from boxsdk import JWTAuth, Client
import schedule
import time
directory = '/videos'
def save_video():
retval = os.getcwd()
…

Muhammed Erem
- 103
- 1
- 8
0
votes
1 answer
Using BOX SDK from IBM Cloud Functions
I am trying to integrate my Watson Assistant to BOX. I tried to use boxsdk in my Cloud Function Action. But it gives me exception - No module named 'boxsdk'
Has anyone tried integrating BOX with Watson Assistant or tried using the API's in cloud…

Techidiot
- 1,921
- 1
- 15
- 28
0
votes
1 answer
Box Java SDK setting tag to a folder
I want to add tag to a folder which shall be uploaded into box.
Below one does not seem to work.
I have enabled tags for my account in box from web UI
final BoxFolder uploadFolder = new BoxFolder(this.boxAPIConnection,
parentFolderId);
…

Ravisha
- 3,261
- 9
- 39
- 66