Google App Engine

Is there a way to get and store data to the google app engine datastore? Any info on this will be very helpful as I’m looking to store global high scores. In the past I’ve used google app engine with app inventor which in turn made the process a walk in the park. I’m currently scratching my head over this problem so if anyone knows or has had some exprience with this I will be very grateful.

You can use the WWW class

Cheers for the quick response.
Okay I see a solution with the get value using wwwclass, but I’m still not seeing how I can store a value. Will I be able to with the wwwclass?

Using the WWW class you will need a proxy to talk to a database. PHP or ASP…

I’m not 100% sure, but the way I know is that you need to have an application running on Google App Engine and use it to talk to the Google Datastore. I don’t think there would be a direct way talking to the Google Datastore from your Unity app.

So you basically send the data from unity app to your application(written with PHP, Java, Phyton or Go) running on the GAE and then this app talks to the Google Datastore using an API to store and retrieve data.