Tunnelvisie
- 合計アクティビティ 14
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 1
アクティビティの概要
Tunnelvisieさんの最近のアクティビティ-
Tunnelvisieさんが投稿を作成しました:
How to identify conflicted files through Box API (python)
Hi, We're running into an issue where a conflicted file is created in a folder, but we don't know how to identify them. For example: We have a file "a.txt" and "a (user).txt" where "a (user).txt" ...
-
Tunnelvisieさんがコメントを作成しました:
Thanks inviting the email address you get from:service_account = client.user().get().loginTo the specific box-folder worked perfectly.
-
Tunnelvisieさんがコメントを作成しました:
So it seems like that error is another silly one. Where instead of providing the user_id as a string I need to provide 'client.user().get()' because that does have the 'object_id' attribute. H...
-
Tunnelvisieさんがコメントを作成しました:
So I figured out that I need to do this:folder_id = '*********'auth = JWTAuth.from_settings_file('box_JWT.json')client = Client(auth)service_account = client.user().get()print('Service Account...
-
Tunnelvisieさんがコメントを作成しました:
So now I do what says and then what? With the dev token I could return the client and then do: root_folder = client.folder(folder_id=folder_id).get()If I do the same thing with the JWTAuth I ...
-
Tunnelvisieさんがコメントを作成しました:
I think one of the reasons I'm getting stuck is because there is no explanation of some of this stuff. Like I want to use the JWT.json file to set it up, but then it seems like I can't use it but...
-
Tunnelvisieさんがコメントを作成しました:
thanks for trying to explain it to me. I really appreciate that you're taking the time to explain, but I have a feeling that either I'm terrible at understanding what to do, or the Box documentat...
-
Tunnelvisieさんがコメントを作成しました:
so the main concerns here are: - Where do I get the correct JWT.json- Who, what and where do I add this Service Account to collaborate on my folder?
-
Tunnelvisieさんがコメントを作成しました:
Thanks , but I'm still confused by this. Here it says:Service Accounts are automatically created when a Custom App is created in the developer console with the JWT authentication method. When thes...
-
Tunnelvisieさんがコメントを作成しました:
Would you mind looking at my follow-up question? Much appreciated!