google-app-engine

App Engine Login Redirect Fails

不羁岁月 提交于 2020-01-05 09:03:59
问题 On March 1, 2011 App Engine changed its login flow, breaking my app (see the Google Groups message). This issue also came up in this Stack Overflow question. The suggested answers are "have the app perform the redirect. That is, createLoginUrl only works when the continue url is a url for the app. If you need the user to be sent to another app/host after login, then your app needs to do that redirect" and "set up a redirect handler on your own app. Make that the target of the continue

App Engine Connected Android project C2DM connection error

不打扰是莪最后的温柔 提交于 2020-01-05 09:03:04
问题 I am currently trying to make an Android App that communicates with Google App Engine. After installing the plugin for Google App Engine, I was just trying to see if the C2DM connection works on the emulator before starting anything, but when I test the connection on the emulator, it just does not connect with the server. Do I need to change anything else in order for it to work? I tried changing the IP address that the application was using, but still with no result. Every time I try to

App Engine Login Redirect Fails

限于喜欢 提交于 2020-01-05 09:03:03
问题 On March 1, 2011 App Engine changed its login flow, breaking my app (see the Google Groups message). This issue also came up in this Stack Overflow question. The suggested answers are "have the app perform the redirect. That is, createLoginUrl only works when the continue url is a url for the app. If you need the user to be sent to another app/host after login, then your app needs to do that redirect" and "set up a redirect handler on your own app. Make that the target of the continue

App Engine Connected Android project C2DM connection error

女生的网名这么多〃 提交于 2020-01-05 09:02:18
问题 I am currently trying to make an Android App that communicates with Google App Engine. After installing the plugin for Google App Engine, I was just trying to see if the C2DM connection works on the emulator before starting anything, but when I test the connection on the emulator, it just does not connect with the server. Do I need to change anything else in order for it to work? I tried changing the IP address that the application was using, but still with no result. Every time I try to

How to include maven-based project into my non-maven project

烂漫一生 提交于 2020-01-05 08:56:40
问题 I have a non-maven app engine project. I need to include the following library/project into it: https://github.com/UltimaPhoenix/luceneappengine. Without using maven at all, how do I make this work? I need step by step details. I have been trying and my code will not even compile. I am using eclipse. Looking at the pom.xml I have figured that I need to download luceneappengine, which I did at http://search.maven.org/#search%7Cga%7C1%7Cluceneappengine. Do I need any other jars? 回答1: First of

Migrate From Google Java API Datastore to Mysql

依然范特西╮ 提交于 2020-01-05 08:01:16
问题 I have an entire app running on GAE and its datastore... now I need to migrate the application and its datastore to mysql db. What is the best approach for acchieving this, is there an bulkdownloader if I used the Java API. It's been 4 days trying to look for this answer, thank you very much in advaced. Regards 回答1: I'd use approcket for that. it's a tool you can use to sync your GAE Datastore with a MySQL datebase. It's well documented but not massively active. I've used it before, and it

NetworkError: 404 Not Found on firefox

爷,独闯天下 提交于 2020-01-05 07:51:14
问题 We have a gwt app deployed on gae for java. The app runs fine in google chrome but fails with below exception on ie and firefox NetworkError: 404 Not Found - http://www.sakshum.org/adminmodule/67883654A8944A4C561CF25763FB1D79.cache.html based on Setup a GWT Project correctly with SVN and Eclipse we have excluded the files in adminmodule directory to upload to app engine. Please advise what is reason for it to fail and how to make it working. The ignored patterns are: .svn *.bak classes/

Google Cloud Search API - is there a limit to number of document puts per second?

戏子无情 提交于 2020-01-05 07:18:13
问题 With the Google Cloud Search API is there a limit or restriction to how many documents you can add to a search index per second? I know the Search API is great for querying and scales well that way, but what about many individual document puts per second? Would using a unique index for each document put improve performance? The reason I ask is because of an application I will be building that will have many Datastore puts with one respective Search document put right after the Datastore

How to Run Cron Jobs in Kotlin Ktor?

廉价感情. 提交于 2020-01-05 07:12:36
问题 Is there a way to run Cron Jobs with Ktor? My end objective is to host a Cron Job written with Kotlin for the Coinverse app's backend service to populate data. I'm currently hosting multiple Java .jar apps written in Kotlin on AppEngine. I'm looking to refactor these apps into Ktor apps on AppEngine with a Cron Job for scheduled tasks, as the .jar apps have more issues with dependencies. I'm looking for Ktor's equivalent to Cloud Functions' built-in implementation for Cron Jobs with

makedirs error: can GAE Python create new directories (folders) or not?

烈酒焚心 提交于 2020-01-05 06:55:34
问题 I have seen a number of questions relating to writing files & creating new directories using Python and GAE, but a number of them conclude (not only on SO) by saying that Python cannot write files or create new directories. Yet these commands exist and plenty of other people seem to be writing files and opening directories no problem. I'm trying to write to .txt files and create folders and getting the following errors: Case #1: with open("aardvark.txt", "a") as myfile: myfile.write("i can't