02-27-2013 11:45 AM
Hi,
I'm having the following problem: My App uses In-app Payments...
void MyThread::purchaseResponse() {
bb::platform::PurchaseReply *reply = qobject_cast<
bb::platform::PurchaseReply*>(sender());
Q_ASSERT(reply);
//emits error signal upon errors.
if (reply->isError()) {
//do some error handling
qDebug() << "Purchase response error. Code(" << reply->errorCode()
<< ") Text(" << reply->errorText() << ")";
}
reply->deleteLater();
}
and if I get an error, I want to do some Error Handling, but I always get Error Code 4. In case this has to do with the Test-Mode - can I find some enumerations or documentation?
Thanks
Peter
Solved! Go to Solution.
02-27-2013 01:26 PM
Are you seeing the purchase test screen on the device and performaning a succesful purchase?
02-28-2013 02:31 AM
Yes - I get this screen.
02-28-2013 10:06 AM
I found this that may be helpful. You may want to ask more questions there since a RIM person with payment experience is watching that forum :
02-28-2013 11:56 AM
Thx