The Google Drive SDK enables developers to integrate their apps with Google Drive to enhance the end user’s experience.
0
votes
2answers
16 views
Thumbnail image is null when listing file from Google Drive
I set the thumbnail successfull
In the same activity, I used following code to get information related to file, and the file.getThumbnail() show encoded data, you know.
private static void ...
1
vote
1answer
21 views
Google Drive Realtime API, how should I model SVG in the collaborative model
What would be a good or recommended way to model SVG DOM tree in Google's Realtime API? Specifically, stringify the SVG DOM tree and choose a collaborative string model or is there a better way? ...
0
votes
1answer
14 views
Invalid Credential for Google Drive API in Android
Possible duplicate
Hello Friends,
I have refer this Google Drive SDK Exception, actually I got this error
07-18 13:07:49.252: W/System.err(16389): ...
1
vote
0answers
43 views
OnDestroy() of Intent
I'm convert from a googledrive example to my class that can handle It easier.
On this example, It call a menthod that return an Intent (this intent used to choose google account).
Main activity call ...
1
vote
1answer
22 views
Do google charge developer if the developer request for doubling or tripling the current api request limit(10,000,000 queries/day)
If my app uses the google drive api and gets popular, there is a big chance that the current api request limit of 10,000,000 queries/day would not be enough. So if this does happen, chances are that I ...
0
votes
1answer
20 views
Share my google drive data using a website in asp.net
I have some files and folders in my Google Drive.And I have a website.
I want to show my google drive content in one page of my website.Any body can view the those data.
I tried this since ...
0
votes
1answer
27 views
Save To Drive Button Doesn't Work
I wrote a simple file server in NodeJS to serve a HTML page with a Save To Drive button. HTML page is served at my_address:1337 and file to be saved is served at my_address:1338. Upon clicking the ...
1
vote
2answers
28 views
API Client 1.3 (rev89) - Error 500 “No individual errors” when using Fields Filter
Today (10.00 AM GMT+2) the code deployed in a production environment, started throwing an increasing number of errors while requesting file lists from a Google Drive folder, the error was always 500 ...
0
votes
0answers
20 views
Google Drive API 1.4 error : Error occurred while sending a direct message or getting the response
I am using Below piece of code to get files with service account.
var certificate = new X509Certificate2("D:\\05-privatekey.p12", "notasecret", X509KeyStorageFlags.Exportable);
var ...
0
votes
1answer
25 views
Search file with query string does not work on google drive api
Below is the code I am using to find list of files containing Volunteers.
private static List<File> retrieveAllFiles(Drive service) throws IOException {
List<File> result = new ...
0
votes
1answer
16 views
Google Drive: Open share dialog
I want to open a share dialog (pick user's to share with and so on, standard Drive share dialog) in my desktop app. I have a browser integrated in my app, all I need is point out a URL to open the ...
0
votes
1answer
26 views
Google Realtime API - when to persist changes to database?
Scenario:
I have multiple browser clients whose internet connection varies from very fast to super slow. Because of that they might not see same state of a document.
I'm using Google shortcut ...
0
votes
0answers
31 views
Iterate folders and files on Google Drive without authorization
Google's Drive service is great, but their documentation is quite confusing...What I want to do is to create a portfolio site where upon request I fetch all files contained in a particular folder from ...
0
votes
2answers
46 views
Set thumbnail image for uploading on Google Drive
I use the following code to set thumb nail for file to upload on Google Drive :
// Set thumb nail path
String thumbnail_path = mediaContent.getFile().getAbsolutePath();
// ...
0
votes
1answer
32 views
Download thumbnail of file from Google Drive
I can download the original file from Google Drive by using the following code :
public static InputStream downloadFile(Drive service, File file)
throws IOException {
if ...