Sergio Tomás
Sergio Tomás
@Pikamander2 Uploading a file to drive, or updating an existing file should be handled properly now that #23 got merged I think
@Pikamander2 I can try to provide a PR adding that, but it should be fairly straight-forward, like: ``` filename = "/pictures/my_image.png" file_path = "/var/www/data/img/my_image.png" client.files.drive_upload_new_file(filename, file_path) ``` Note: If you...
> Oh, I guess it would be this one? > > ``` > response = client.files.drive_upload_new_file("/Pictures/upload.jpg", "/mnt/c/Users/i/Downloads/image1.jpg") > ``` Yes, that would be the one, filename is the full path...
Hello @Pikamander2 Apart from the client id and client secret you need a token from outlook (a refresh token that comes from the login is the best) Then you need...
In case it's useful for anyone, we were using this in github actions, so I created a very small repository to customize the action. Since it's public, feel free to...