Tunnelvisie
- Total activity 14
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 1
Activity overview
Latest activity by Tunnelvisie-
Tunnelvisie created a post,
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 commented,
Thanks inviting the email address you get from:service_account = client.user().get().loginTo the specific box-folder worked perfectly.
-
Tunnelvisie commented,
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 commented,
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 commented,
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 commented,
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 commented,
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 commented,
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 commented,
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 commented,
Would you mind looking at my follow-up question? Much appreciated!