Tunnelvisie
- 合計アクティビティ 14
- 前回のアクティビティ
- メンバー登録日
- フォロー 0ユーザー
- フォロワー 0ユーザー
- 投票 0
- サブスクリプション 1
コメント
Tunnelvisieによる最近のアクティビティ-
Thanks inviting the email address you get from:service_account = client.user().get().loginTo the specific box-folder worked perfectly.
-
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...
-
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...
-
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 ...
-
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...
-
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...
-
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?
-
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...
-
Would you mind looking at my follow-up question? Much appreciated!
-
I still don't understand. I have two ways to connect to box set up, one via developer token: def connectToBoxOptionA(): # Read app info from text file try: with open('box.json', 'r') as ...