I have completed an mini game by unity, named "penguins_test".
I have exported 2 files:
penguins_test.html
penguins_test.unity3d
And now, I want to use Google App Engine service to host as a server.
So user can go to website like, "http://penguins_test.appspot.com", to play the game.
However, I am new with the service and the user interface look very complicated.
Can anyone help me to achieve the goal?
Or any online tutorial can teach me to do this?
I prefer to use php or python as the web programming language, or java can be an alternative if it can help to solve the problem.
Please help! Thanks
To run your application on App Engine,first you have to download the Google AppEngine SDK to your local machine and before that to need to register your self with App Engine. Go through to the link [1]. You can create your application in Python, Java, Php and GO. But I prefer to go through Python or Java. You can find the tutorials on links [2][3].
You just follow the docs, and I hope you will be able to deploy you application on appspot.com. Also refer to the pricing of the Instances you will run on Google Cloud [4].
[1] https://cloud.google.com/appengine/docs
[2] Python: https://cloud.google.com/appengine/docs/python/gettingstartedpython27/introduction
[3] Java: https://cloud.google.com/appengine/docs/java/gettingstarted/introduction
[4] Google Pricing: https://cloud.google.com/pricing/
There was a very similar question asked on the unity forums (link attached ) . Hope it answers your question!
Related
I've searched a lot through the web about this topic (even on StackOverflow), but the questions I was looking at weren't able to help me, so, here it is (Although im very good at it, english is not my native language, so I'm sorry for any mistake made): (SKIP TO EDIT)
I'm making a simple chat program in Java (self learning), and, at first, I wanted to access a file on my computer. I soon found it hard to acomplish, and decided I wanted to access a drive folder on MY account. So, I googled about a possible Google Drive API. And I found it!!!
I downloaded a copy of the API to my PC, and then i went online to know how to use the API, but the README.txt file and the youtube tutorial were not helpful at all, because i could not understand the instructions. I Looked everywhere but still didnt find an easy-to-understand answer.>
So, im asking if any of you could provide a step-by-step tutorial on how i can accomplish my goal. Ive created projects on the API consoles, but im a bit confused on what to do with them (possibly going to delete them).
EDIT/REDO:
I'm making a chat program, and I want EVERY copy of the program to access a folder on my personal Google Drive and get certain files from it, where ever the user is, and without him having to see the OAuth 2.0 Autorization screen(if this last step cant be skipped, I'll work with that too).
The problem is that, although i have checked the README.txt and the youtube tutorial, i still dont understand how to use the API in the way i want.
So, im asking if any of you could provide a step-by-step tutorial on how i can accomplish my goal, i.e, (Some code could be of great use):
1st-Do this;
2nd-Do that;
...
(n steps)-You are ready;
Thank you in advance!!
P.S.: this is my last "free" question, so if this specific question has been answered please comment it out.
To start using Drive API, you may may want to follow and complete the steps given in Java Quickstart.
Then to integrate with the Drive UI, you may want to check the following references:
Enable the Drive Platform - to get started integrating with the Drive UI, you need to enable the Drive API and provide configuration details in your API project. This gives you access to the API as well as access to UI integration features.
Install Your App - Google Drive lets users install an app by approving an OAuth 2.0 access request.
Open Files - this page describes how to integrate your app with these Drive UI features to open files stored in Google Drive
Hope that helps!
Recently I have started playing with google app engine and eclipse trying to create a simple java app. The problem is that the "guestbook" example given today in the official GAE website is is slightly different, more complicated and I struggle to remake the example on this video which you most probably already have seen:
http://www.youtube.com/watch?v=P3GT4-m_6RQ
If anyone have seen this code on some other website or know any other resources such as books, journals, articles, etc. that will help me to recreate the example on my own, this would be much appreciated.
This is the best for any beginner.
https://developers.google.com/appengine/docs/java/gettingstarted/
I have a google app script which I want to invoke from the Google App Engine for Java. Can someone please guide on how to invoke such a script?
I tried to Google this and found only lots of information on how to do the reverse.
Please advise.
I had the same question 6 months ago. I could solve my problem using script timers.
But maybe this will work. I did not test it yet. You can publish an apps script as a service. That's part of working with the GUI.
See f.i. this totorial : http://code.google.com/googleapps/appsscript/articles/twitter_tutorial.html
My idea is that you make a request to this service from app engine with urlfetch.
I did not test this, but I think it can work.
See als this post from Henrique :
http://www.google.com/support/forum/p/apps-script/thread?tid=3c339ede3f4e4afb&hl=en
Let me know if you solved your problem.
I need to authenticate the users who visit my java based web app (Servlets and JSP) using different social media like facebook, twitter, google and yahoo.
Is there any open source library which solves this problem? Instead of working on different API's an open source java library would be helpful.
The guys from SpringSource have a library doing what you ask for, called Spring Social. The linked blog article explains what it does with some nice examples. But the project is still in beta (even though the quality of their deliverables has always been rock solid).
Take a look at openid4java.
This library allows you to OpenID-enable your Java webapp.
You can use Open ID with openid4java.
I know similar questions have been asked before but i think this is slightly different. for about a year Ive been learning Java. I have been building a few applications on the desktop using my-eclipse and swing GUI. Now i want to start programming for the android. I understand how to do what i want in Java but it all seems very different on android. Does anyone know of any good tutorials or videos out there with step by step instructions showing examples of android applications so that i can learn and build off of them? Most of my programs are simple and for the most part i just need to understand how to interact with the interface (IE the buttons, label or text views i think they call them and so on). I've searched all day and I cant find anything good.
I found this quite use full apart from the tutorials from the developers site.
If you are looking for advanced tutorials , you can try here.
for the most part , once you are trying a specific application , a google search could get you a relevant tutorial.
goodluck.
ps. It helps to read dev guide before you begin to write programs for android.
You should have a look at the Android API demos. They include a lot of simple examples which access special problems/tasks.
A more complex 'productive' application is the Android app for the I/O conference. It's Open Source - so you can have a look 'inside'.
the Android developers site has a great dev guide and tutorials to try out. the dev guide can be found here. The tutorials can be found here.
I highly recommend "Android Programming Tutorials" by Mark Murphy - http://commonsware.com/AndTutorials/. I found the step-by-step tutorials to be very helpful, and it does focus on teaching Android development rather than Java.