Cloud Service to store data

Hi,

Does anyone know the cloud service for uploading and downloading data that easy to implement ?

I try to use google cloud storage, however I stuck to get authentication code.

I really appreciate your answer. . .

Cheers [import]uid: 159661 topic_id: 31913 reply_id: 331913[/import]

Moai Direct Services includes “collections” which is basically a cloud database that can be accessed fairly easily from a Corona SDK app.

You can find out about it here:
http://getmoai.com/wiki/index.php?title=Moai_Collections

One really nice thing is the “smaller” version of Moai cloud services is free.

If you are looking for tutorials on how to use Moai collections from Corona you can find it in Lesson 6 of my Business Apps Using Corona SDK course – even though the course focuses on biz apps, the cloud part is the same for games or apps.

That course isn’t free, but if you only want that lesson you can get it for $10 here:
http://masteringcoronasdk.com/lessons-ala-carte/

Or, just go to the Moai page and start playing around.

Jay
[import]uid: 9440 topic_id: 31913 reply_id: 127280[/import]

Hi,

Thanks for your replied. I check moai collection, however it just able to post json data.

Is there possible to store file, for example image file or txt file ?
Cheers [import]uid: 159661 topic_id: 31913 reply_id: 127289[/import]

I think Moai collections is just for JSON-type data.

You could also just use straight FTP and upload it to your own site. There’s FTP code in the Code Exchange that is pretty easy and works well – I know because I used it in one of my games to upload a SQLite database file.

Jay
[import]uid: 9440 topic_id: 31913 reply_id: 127303[/import]

Take a look at www.quickblox.com

You can download and store any kind of data and also set up and manage users.

Stefan [import]uid: 2646 topic_id: 31913 reply_id: 127315[/import]

The following are also options:

Parse – someone has some easy to use code in the community library.
Amazon’s Cloud services. It’s in theory REST API, but it gave me a headache trying to figure it out.
Game Minion – Supports storing blogs of data. I’ve not tried to figure out how it actually works yet. They have a Corona SDK library.

Depending on your data, you could always “roll your own”. network.request() supports HTTP POST so its not too difficult to write a little PHP script on your own webhost to upload files from your device and retrieve them with network.download().

[import]uid: 19626 topic_id: 31913 reply_id: 127318[/import]

Moai Direct Services includes “collections” which is basically a cloud database that can be accessed fairly easily from a Corona SDK app.

You can find out about it here:
http://getmoai.com/wiki/index.php?title=Moai_Collections

One really nice thing is the “smaller” version of Moai cloud services is free.

If you are looking for tutorials on how to use Moai collections from Corona you can find it in Lesson 6 of my Business Apps Using Corona SDK course – even though the course focuses on biz apps, the cloud part is the same for games or apps.

That course isn’t free, but if you only want that lesson you can get it for $10 here:
http://masteringcoronasdk.com/lessons-ala-carte/

Or, just go to the Moai page and start playing around.

Jay
[import]uid: 9440 topic_id: 31913 reply_id: 127280[/import]

Hi,

Thanks for your replied. I check moai collection, however it just able to post json data.

Is there possible to store file, for example image file or txt file ?
Cheers [import]uid: 159661 topic_id: 31913 reply_id: 127289[/import]

I think Moai collections is just for JSON-type data.

You could also just use straight FTP and upload it to your own site. There’s FTP code in the Code Exchange that is pretty easy and works well – I know because I used it in one of my games to upload a SQLite database file.

Jay
[import]uid: 9440 topic_id: 31913 reply_id: 127303[/import]

Take a look at www.quickblox.com

You can download and store any kind of data and also set up and manage users.

Stefan [import]uid: 2646 topic_id: 31913 reply_id: 127315[/import]

The following are also options:

Parse – someone has some easy to use code in the community library.
Amazon’s Cloud services. It’s in theory REST API, but it gave me a headache trying to figure it out.
Game Minion – Supports storing blogs of data. I’ve not tried to figure out how it actually works yet. They have a Corona SDK library.

Depending on your data, you could always “roll your own”. network.request() supports HTTP POST so its not too difficult to write a little PHP script on your own webhost to upload files from your device and retrieve them with network.download().

[import]uid: 19626 topic_id: 31913 reply_id: 127318[/import]