Page 1 of 1

can I use appery.io for my game with HTML5/jquery, jquery ui, some jquery plugins,parse and stripe module for credits ca

Posted: Fri Feb 20, 2015 2:45 pm
by roberta sander

Hi, I've done a simple logic game with HTML5/jquery jquery ui and some jquery plugins, i'd like to integrate in phonegap to make the mobile version, i need to use parse for data and for credit card transactions of in-app purchase https://parse.com/docs/cloud_modules_..., is it all possible with appery.io ?? and the game has one html page and many pages 4 products, may i have to reduce the pages to use the starter plan? let me know if ican use appery.io for my game, thank you


can I use appery.io for my game with HTML5/jquery, jquery ui, some jquery plugins,parse and stripe module for credits ca

Posted: Fri Feb 20, 2015 4:31 pm
by Maryna Brodina

Hello!

Sure, you can do that! Adding plugins is described here http://devcenter.appery.io/documentat...

Unfortunately there is no tutorial on how to add in-app purchase, but here is a correspondent topic https://getsatisfaction.com/apperyio/... and I invite you to vote for that request and then share your use case in the discussion.

[quote:]and the game has one html page and many pages 4 products[/quote] I think so, but it depends on your app logic.


can I use appery.io for my game with HTML5/jquery, jquery ui, some jquery plugins,parse and stripe module for credits ca

Posted: Fri Feb 20, 2015 5:46 pm
by roberta sander

thank you for answer it's the first time i use parse if i can use it and i can add a code like this

var Stripe = require('stripe');
Stripe.initialize('mySecretKey');

Stripe.Charges.create({
amount: 100 * 10, // $10 expressed in cents
currency: "usd",
card: "tok_3TnIVhEv9P24T0" // the token id should be sent from the client
},{
success: function(httpResponse) {
response.success("Purchase made!");
},
error: function(httpResponse) {
response.error("Uh oh, something went wrong");
}
});

the problem is solved i'll see when i will work on it
thank you bye