Someone at StackOverflow asked a good question. How do you register an iOS device for testing? I'll post the answer there if someone dcan answer it here.
Solved! Go to Solution.
β11-30-2011 06:04 AM
Hi stymiee,
Thank you for letting us know about this. If they are referring to the actual app please be advised that currently the app will not work for test accounts but if they are talking about the SDK, they will need to register the phone first by using βMobileDeviceRegistrationRequestβ the first time they use a new phone. The phone will show up for approval in their Settings page when they login to their Authorize.Net account. Once they approved it they can login by using βMobileDeviceLoginRequestβ.
Thanks!
Joy
β12-02-2011 09:05 AM
Hi stymiee,
Thank you for letting us know about this. If they are referring to the actual app please be advised that currently the app will not work for test accounts but if they are talking about the SDK, they will need to register the phone first by using βMobileDeviceRegistrationRequestβ the first time they use a new phone. The phone will show up for approval in their Settings page when they login to their Authorize.Net account. Once they approved it they can login by using βMobileDeviceLoginRequestβ.
Thanks!
Joy
β12-02-2011 09:05 AM
Thanks, Joy. I've passed this along. :)
β12-02-2011 09:16 AM
Hello,
I am integrating Authorize.net in iPhone SDK but i am not able to register device
My code is :
MobileDeviceRegistrationRequest *objMobileDeviceRegistrationRequest = [MobileDeviceRegistrationRequestmobileDeviceRegistrationRequest];
objMobileDeviceRegistrationRequest.anetApiRequest.merchantAuthentication.name= @"XXX";
objMobileDeviceRegistrationRequest.anetApiRequest.merchantAuthentication.password = @"XXX";
objMobileDeviceRegistrationRequest.anetApiRequest.merchantAuthentication.mobileDeviceId =
[[[UIDevicecurrentDevice] uniqueIdentifier]
stringByReplacingOccurrencesOfString:@"-"withString:@"_"];
AuthNet *an = [AuthNet getInstance];
[an setDelegate:self];
[an mobileDeviceRegistrationRequest : objMobileDeviceRegistrationRequest];
can you please help me?
Thanks
Yashesh Chauhan
β10-28-2012 11:42 PM