jmoldow_box
- Total activity 74
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 34
Activity overview
Latest activity by jmoldow_box-
jmoldow_box commented,
Please see https://status.box.com/ . The events stream is currently experiencing some delays. The root problem was mitigated, so the backlog should be clearing out now.
-
jmoldow_box commented,
Hello, Why do you need the search API for what you are doing? Send the API call to create the folder. If that name doesn't yet exist, the folder will be created, the API call will succeed, and...
-
jmoldow_box commented,
The square brackets indicates installing an "extra". In our setup.py (https://github.com/box/box-python-sdk/blob/master/setup.py) file, you'll see this: extra_requires = defaultdict(list) ex...
-
jmoldow_box commented,
I believe the intention of this feature is that all content in the user's root folder will be collaborated content. So an admin account can create a folder (NOT using As-User, just as themself) an...
-
jmoldow_box commented,
Developer tokens can never be refreshed. They are meant for development/debugging only, and not for production use. If you wish to refresh, you must go through our auth process. This means doing...
-
jmoldow_box commented,
Hi, Many of the Client methods do not make API calls directly. Client.file(), Client.folder(), etc. are examples of this. Instead, they give you an empty object which is configured to make API c...
-
jmoldow_box commented,
No, you cannot suppress these. The user must provide their Box login, and then must authorize the app. If the user already has a valid login cookie for box.com in the browser that you are using,...
-
jmoldow_box commented,
For uploading the initial file, you use uploadFile(parentFolderID, filename, content, callback) That callback is "called with data about the upload if successful, or an error if the upload...
-
jmoldow_box commented,
If you are intending to use 3-leg OAuth2, there is no way to bypass the grant process. That is a required part of allowing users to authenticate with your application. Once you receive an auth_c...
-
jmoldow_box commented,
If you are intending to have users log in with their Box accounts, then your app needs to be set up to do 3-leg OAuth2, not JWT. If you are intending to use JWT to access a service account or ap...