shynee
- Activité totale 16
- Dernière activité
- Membre depuis
- Abonné à 0 utilisateur
- Abonnés 0 utilisateur
- Votes 0
- Abonnements 4
Aperçu des activités
Dernière activité effectuée par shynee-
shynee a ajouté un commentaire,
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 a créé une publication,
BoxApiException - Suppress warnings
RéponduI 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 a créé une publication,
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 a créé une publication,
Security Classification on a folder
RéponduHello 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 a ajouté un commentaire,
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 a créé une publication,
Classification label
RéponduOn 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 a ajouté un commentaire,
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 a ajouté un commentaire,
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 a créé une publication,
AttributeError: 'Client' object has no attribute 'get_retention_policies'
RéponduHello 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 a ajouté un commentaire,
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...