parallel588_google_drive 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/google_drive/session.rb +1 -1
- metadata +1 -1
data/lib/google_drive/session.rb
CHANGED
|
@@ -134,7 +134,7 @@ module GoogleDrive
|
|
|
134
134
|
# Returns GoogleDrive::File.
|
|
135
135
|
# Returns nil if not found
|
|
136
136
|
def find_by_id(resource_id)
|
|
137
|
-
doc = request(:get, "https://docs.google.com/feeds/documents/private/full/#{resource_id}
|
|
137
|
+
doc = request(:get, "https://docs.google.com/feeds/documents/private/full/#{resource_id}", :auth => :writely)
|
|
138
138
|
return entry_element_to_file(doc)
|
|
139
139
|
end
|
|
140
140
|
|