As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
Hi,
I've got the same problem, I think email verification is disabled by default, and I'm getting nothing from success or error, should I just default to the titanium implementation?
Thanks
Gurmukh:
It seems like the post 2 above this one from Mark seems to resolve the issue, so the standard titanium implementation would likely be the best route to go.
Thanks,
Nico Barelmann
i am facing a problem (small thing, i guess) using Facebook integration with the backbone/Titanium Libary.
At the moment my example code looks like this:
function onFacebookClick(e) {
var user = new Kinvey.Backbone.User();
var promise = user.connect('facebook', {
appId : Facebook.appid,
success : function(model, response, options) {
console.log("Facebook Success");
},
error : function(error){
alert("error");
}
});
}
The problem ist, that neither the success or the error handler are executed. (But the app opens the facebook register window etc. without any problem)
Expected:
After successfull login with my facebook account data and returned to the app, it should "fire" the success handler, so that i cann move forward.
Any hint/idea would be great.
Best,
Nico