BB_Jake
- 合計アクティビティ 26
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 11
アクティビティの概要
BB_Jakeさんの最近のアクティビティ-
BB_Jakeさんが投稿を作成しました:
Box Search Metadata with optional filters
Hello, We have created a metadata template which we will associate with documents that is supposed to aid with searching. The goal is to be able to enter keywords in the template fields so if any ...
-
BB_Jakeさんがコメントを作成しました:
what exactly are you looking for? If you retrieve a list of collaborations for a file or folder, you have access to all users/groups listed as collaborators which includes the user's name and log...
-
BB_Jakeさんがコメントを作成しました:
can you be a little more specific with your question?Using https://developer.box.com/reference#view-a-folders-collaborations you can get a list of collaborations for a folder. Each collaboration ...
-
BB_Jakeさんがコメントを作成しました:
have you tried using the json library? import jsonx = client.file(file_id).get()print(json.dumps(x)) orprint(json.dumps(x.__dict__))
-
BB_Jakeさんがコメントを作成しました:
Webhooks may work for you - https://developer.box.com/docs/work-with-webhooksYou can define a webhook for that specific file and monitor whichever events you need to (sounds like you want to list...
-
BB_Jakeさんがコメントを作成しました:
I'm not sure if there's 1 call that can get you this info for every single folder and sub folder. 1 option could be :Using : https://developer.box.com/reference#view-a-folders-collaborations to g...
-
BB_Jakeさんがコメントを作成しました:
why not try the basic example from the documentation : https://developer.box.com/reference#download-a-file curl -L https://api.box.com/2.0/files/FILE_ID/content -H "Authorization: Bearer ACCESS_T...
-
BB_Jakeさんがコメントを作成しました:
https://github.com/box/box-python-sdk/blob/master/docs/usage/collaboration.md#add-a-collaboration user = client.user(user_id='11111') collaboration = client.folder(folder_id='22222').collaborate(...
-
BB_Jakeさんがコメントを作成しました:
The documentation has been recently updated and organised on GitHub, please take a read and you should be able to find most things here : https://github.com/box/box-python-sdk/tree/master/docs/us...
-
BB_Jakeさんがコメントを作成しました:
any account that is a collaborator on the folders will be able to see the files being uploaded so make sure the account you are using with the python sdk is a collaborator.The easiest way is to c...