samples/drive/drive.rb in google-api-client-0.9.pre3 vs samples/drive/drive.rb in google-api-client-0.9.pre4
- old
+ new
@@ -10,21 +10,28 @@
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
+# Pass all auth variables to .env file
+# Read more about auth on https://developers.google.com/drive/web/about-auth
+# For example, in my case I added GOOGLE_APPLICATION_CREDENTIALS=credentials.json
+
+require 'dotenv'
+Dotenv.load
+
require 'tempfile'
require 'googleauth'
require 'google/apis/drive_v2'
Drive = Google::Apis::DriveV2
drive = Drive::DriveService.new
drive.authorization = Google::Auth.get_application_default([Drive::AUTH_DRIVE])
# Insert a file
-file = drive.insert_file({title: 'drive.rb'}, upload_source: 'drive.rb')
+file = drive.insert_file({title: 'drive.rb'}, upload_source: __FILE__)
puts "Created file #{file.title} (#{file.id})"
# Search for it
files = drive.list_files(q: "title = 'drive.rb'")
puts "Search results:"
@@ -35,6 +42,6 @@
# Read it back
tmp = drive.get_file(file.id, download_dest: Tempfile.new('drive'))
# Delete it
drive.delete_file(file.id)
-puts "File deleted"
\ No newline at end of file
+puts "File deleted"