shynee
- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 4
Activity overview
Latest activity by shynee-
shynee commented,
Had to open a case with BOX support. Here is the solution which worked perfectly. from logging.handlers import SysLogHandler, logginglogging.basicConfig(level=logging.CRITICAL)
-
shynee created a post,
BoxApiException - Suppress warnings
AnsweredI am trying to capture exceptions. I can capture error code 404 and 409 fine, but not 429(Request rate limit exceeded). The other issue with 404/409/429 is that I get this warnings show up on the ...
-
shynee created a post,
boxsdk.exception.BoxAPIException: Message: Access denied - insufficient permission
Trying to create a BOX ID through python SDK. But getting above error. My app authorized for the following. Application Access : EnterpriseApplication Scopes : Read and Write all files and folders...
-
shynee created a post,
Security Classification on a folder
AnsweredHello Box Community,When I upload a file, I set the classification using the following code. But I have make an API call for every file which slows down my upload speeds. I was told by box support...
-
shynee commented,
Super, Thanks Willer. You are such a life saver. Another followup question. How do I update the classification on a file ? Also how do I list all the classifications defined in our BOX environmen...
-
shynee created a post,
Classification label
AnsweredOn Each file I see classification label from the web interface. But it doesn't list it through API call. How do I access this tag through python sdk ? Also how do I list all the classification la...
-
shynee commented,
I did try to iterate, but it was giving me an error. After closer inspection, I found my authentication needs higher privileges. "error_description="The request requires higher privileges than pr...
-
shynee commented,
Awesome. That was it. Running an older version of sdk. Did a pip upgrade and error went away. I have a follow up question. How do I access/iterate through this object ? Thanks Again.
-
shynee created a post,
AttributeError: 'Client' object has no attribute 'get_retention_policies'
AnsweredHello Box Gurus, Trying to extract retention policies. But getting an error. Is my API endpoint correct ? sdk = JWTAuth(client_id="myclientid",client_secret="myclientsecret",enterprise_id="12345"...
-
shynee commented,
We have large Isilon Shares with millions of files. We are trying to move some of the files which were accessed in the last one year. That was the main reason for copying file by file. I did a tes...