[google-appengine] Re: Mail API Quotas

2017-11-27 Thread Bipin Sasi
Hi Kim, Why can't we have the mail quota increased if the mails are sent within the domain users ? It has impacted all our inhouse appengine apps which has approval workflow. We cannot trust the privacy policy of a third party Vendor . Regards, Bipin On Friday, March 4, 2016 at 12:56:58 A

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Daniele, It looks as if credentials have not been set properly for your project. How did you set app authentication, exactly, and how did you ascertain it works fine, as you mention? You can gather more detail by reading points a. to h. at Step 1 on the ".NET Quickstart" documentation pa

[google-appengine] Re: Push Queues working in App Engine Standard Local Server in Java

2017-11-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Azeem, If you want to get familiar with task queues, you are encouraged to follow a complete example. The one provided in documentation is: "Enqueue.java" on github

[google-appengine] Re: Websocket connection issues with NodeJS app using SocketIO on app engine

2017-11-27 Thread 'Yannick (Cloud Platform Support)' via Google App Engine
Hello, it is not possible to sign up for early access to Web Sockets on App Engine. A link to the signup form was posted on the feature request for a Web Sockets API

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-27 Thread Daniele Volpe
Hi George, this is my code. string[] scopes = new string[] { DriveService.Scope.Drive }; // Full access var keyFilePath = Environment.CurrentDirectory + "JSON_FILE_LOCATION"; if (!System.IO.File.Exists(keyFilePath)) { Console.WriteLin

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-27 Thread Daniele Volpe
Hi George, this is my code: string[] scopes = new string[] { DriveService.Scope.Drive }; // Full access var keyFilePath = Environment.CurrentDirectory + "JSON_FILE_LOCATION"; if (!System.IO.File.Exists(keyFilePath)) { Console.WriteLin

[google-appengine] Re: Setting up JupyterHub

2017-11-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Nicolaus, Authorized JavaScript origins in this case refer to the authorized redirect URIs to be called back as part of the 3-legged OAuth 2.0 flow. This flow is illustrated on the "Using OAuth 2.0 to Access Google APIs" documentation page

[google-appengine] Re: dev_appserver: Connect to remote datastore

2017-11-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Filipe, We'll examine the code samples provided and come back to you shortly. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubsc

[google-appengine] IAM loses permissions to deploy

2017-11-27 Thread 'Günter Grodotzki' via Google App Engine
Every now and then my IAM user / service account that I created loses the ability to do deploys: HttpException: Permissions error fetching application [apps/PROJECT_ID]. Please make sure you are using the correct project ID and that you have permission to view applications on the project. Noth

[google-appengine] Re: Push Queues working in App Engine Standard Local Server in Java

2017-11-27 Thread Azeem Haider
Thanks for your time. I found problem by my self. If you see file insertentity carefully there is only one method doGet() which receive only Get Requests. But sending request with task queue is Post Request by Default. Just add another method doPost() and everything is working fine. OR send a