I can show my code if need be but I pretty much followed this link verbatim http://burrsutter.blogspot.com/2012/04/my-getting-started-experience-with.html
I can create a user once and its successful but every time i try to create a user with a different name or relaunch the simulator and create another user I get "Fail" any ideas whats going on?
2 Answers
Maybe if you actually had your success/fail function do something useful, you might know what the reason actually is:
function (e) { if (e.success) { alert('Success'); } else { Ti.API.error(JSON.stringify(e) alert('Fail'); } });Now check your logs and see WHY you are having a failure.
I'd lean towards you are already logged in.
Hi Shane, Stephen has mentioned the correct point. check the message in case of your failure. once you logged in and created an account, logout first then create new one.
Your Answer
Think you can help? Login to answer this question!