totallybueno Posted November 2, 2014 Share Posted November 2, 2014 Hi there,so I´m making a game and I need to build a basic backend for it, but probably my php skills and time are not gonna be enough, so I wanted to ask if you guys know a tool/website/cloud service... or something like that where I can create my backend. It´s not a big deal, the users can register and upload 5 pictures (and edit/delete those pictures) Do you know any service to do that? Thanks in advance. Quote Link to comment Share on other sites More sharing options...
tsphillips Posted November 3, 2014 Share Posted November 3, 2014 If you have not already, check out clay.io:http://clay.io/development-tools If you are willing to roll your own, I would recommend standing up an Amazon Web Services (AWS) EC2 instance.http://aws.amazon.com/ Tom Quote Link to comment Share on other sites More sharing options...
totallybueno Posted November 3, 2014 Author Share Posted November 3, 2014 Thanks tsphillips, but I need something different, as I said, I need to let the player to upload a few pictures for the game, and I think is not gonna be possible with clay.io (I use this for my leaderboards). Thanks anyway and at least now I´m trying with Wordpress... seems to be fine Quote Link to comment Share on other sites More sharing options...
tsphillips Posted November 5, 2014 Share Posted November 5, 2014 Would Clay.Player.saveUserData() work to save image objects? (Or base64 encoded images.) This API may work: http://clay.io/docs/data Tom Quote Link to comment Share on other sites More sharing options...
totallybueno Posted November 5, 2014 Author Share Posted November 5, 2014 No, I need something different, I need a backend to upload images to a server and later, load those images into the game php stuff you know Quote Link to comment Share on other sites More sharing options...
Wavertron Posted November 6, 2014 Share Posted November 6, 2014 There are a lot of image/photo sharing sites these days. I've never looked into them myself, but a quick google for "Instagram api" shows they offer something. Perhaps something like that will work for you totallybueno 1 Quote Link to comment Share on other sites More sharing options...
lane Posted November 6, 2014 Share Posted November 6, 2014 I've looked into backend solutions a while back, if you don't want to roll your own server with Heroku/AWS/Digital Ocean, the three ideal ones with different pros/cons that I settled with was Parse.com, Firebase.com or Google App Engine. App Engine is a bit of a beast, Firebase is extremely easy to use since you can access it like json (and Google just purchased them so you know they'll be around at least). Parse is well documented with a lot of options and a very generous amount of storage/access for free to get you started/growing; it's also backed by Facebook so its stable as well. In my opinion, Parse has the best features for the price points, especially for indie, and they have many different language sdks, allowing you to stay in the environment you want to use. HTH Quote Link to comment Share on other sites More sharing options...
totallybueno Posted November 6, 2014 Author Share Posted November 6, 2014 Really interesting Rudy because one of the options I was planning is exactly that, to let the user to use his Instagrams pictures... thanks mate, that´s a good tip Quote Link to comment Share on other sites More sharing options...
suyashmshephertz Posted February 13, 2015 Share Posted February 13, 2015 Hi there,so I´m making a game and I need to build a basic backend for it, but probably my php skills and time are not gonna be enough, so I wanted to ask if you guys know a tool/website/cloud service... or something like that where I can create my backend. It´s not a big deal, the users can register and upload 5 pictures (and edit/delete those pictures) Do you know any service to do that? Thanks in advance. I can suggest you AppWarp cloud service. AppWarp supports creation of Multiplayer games. It has features like Rooms, Lobby, MatchMaking, etc. Here is a tutorial for creating multiplayer game/app in HTML5 http://appwarp.sheph...pp-walkthrough/ Thanks Shahdee 1 Quote Link to comment Share on other sites More sharing options...
totallybueno Posted February 13, 2015 Author Share Posted February 13, 2015 That sounds cool, I´m gonna check that tutorial Thanks. Quote Link to comment Share on other sites More sharing options...
seeker Posted August 25, 2016 Share Posted August 25, 2016 ok, i have some experience. instead of using 3rd party tools, try coding one by yourself. A backend in PHP is quite simple. 1) It has a request handler to accept a POST call 2) For uploading the images, convert them into a base64 string format. 3) For retrieving the images, decode them using the reverse 4) Testing on localhost is easy with XAMPP/MAMP 5) Deploying - this is the tricky part, because each cloud service has it's own way of interpreting the code. I recommend using Digital Ocean, which is a solid VPS on low cost. It's like a copy of your computer running on the cloud. Hope this helps!!!!!!!!!! jkohler 1 Quote Link to comment Share on other sites More sharing options...
jkohler Posted August 26, 2016 Share Posted August 26, 2016 i tried AppWarp, it's actually not bad. But long term, not getting tied to any provider makes more sense. Quote Link to comment Share on other sites More sharing options...
RenStimpyShow Posted August 29, 2016 Share Posted August 29, 2016 Hello, I recommend a Platform as a service solution (PaaS) for backend projects, instead of the microservices methods that the other members here suggested. For example, Heroku and PHP make a very good combination. Sure, there is vendor dependency, but you'll find starting up a lot quicker. They have excellent support and a big community. https://devcenter.heroku.com/articles/getting-started-with-php#introduction The counterargument is that if someone already has a neat template or process of firing up EC2/Digital Ocean instances with their backend code, then PaaS is less relevant. Quote Link to comment Share on other sites More sharing options...
totallybueno Posted September 14, 2016 Author Share Posted September 14, 2016 Hey, lately I´m working with Google Firebase and I should say it´s super easy, at least for the basic stuff (leaderboards, acces level codes...) Give it a try if you need something like that labrat.mobi and Shahdee 2 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.