Bibek
- Total activity 71
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 29
Activity overview
Latest activity by Bibek-
Bibek commented,
Hello, Python is kind of sensitive with space and tab since there are no braces to enclose statements. Always use 4 spaces instead of tabs. that makes sure the code is properly formatted.Never mix...
-
Bibek commented,
Hi Ragava,It's been a while I haven't used vanilla code to manage Authentication. I use Box .NET SDK to manage those automatically.But here is the code that I used to use : #region variables publi...
-
Bibek commented,
Hi,I have implemented similar process but i am storing tokens in file. You could implement something similar to read tokens from the DB as you are doing it to save it before.May be the following c...
-
Bibek commented,
Hi,There is no API to convert the parent id of a certain folder. However, you could use copy API to copy the folder into some other folder and then delete the current folder.https://developer.box...
-
Bibek commented,
Hi,If you have a co-admin or admin access to Box portal, you could just run a collaboration or shared link report to get all the collabs and filter it via your email address.Details can be found h...
-
Bibek commented,
Hi, Could you send me the whole request that you are using while refreshing the token. Please include header, URL, etc. thanks,Bibek
-
Bibek commented,
Hi,If you are using C#, you could use Box .NET SDK for that. https://github.com/box/box-windows-sdk-v2In the SDK, you can perform every operations that you can find in Box API listing.For instance...
-
Bibek commented,
Hi,There is no Box notes API available as of yet, so you cannot convert box Notes to plain text. I was wondering why you would need to "backup" Box notes. I personally use Box itself as a Backup f...
-
Bibek commented,
Well, i haven't tried to get older events but Box API doc says this: User Events Retention Policy - We store user events for between 2 weeks and 2 months, after which they are removed.Enterprise E...
-
Bibek commented,
Hi,Like Tony mentioned, refresh tokens only expires if it is not used for 60 days or you used the wrong refresh token that is already been invalidated.You need to STORE the tokens for persistent u...