Use the Parse Javascript SDK with Titanium Studio.
Parse Javascript SDK 1.1.4
Titanium Studio 2.1
-
Copy the included parse-x.x.x.js file into the "Resources" folder in Titanium
-
Copy the following line to the top of "app.js" in your project "Resources" folder
Ti.include("parse-1.1.4.js");
-
Just use parse like you would normally using the Parse Javascript SDK Guide
i.e. add this to your code to test if its working
Parse.initialize(applicationId, javaScriptKey); var TestObject = Parse.Object.extend("TestObject"); var testObject = new TestObject(); testObject.save({foo: "bar"}, { success: function(object) { alert("yay! it worked"); } });