I am integrating Apple Pay integration using cyberSource in my application. what i did for.
1- I created a seller ID / 2- I created a test account at http://www.cybersource.com/
3- I downloaded the cybersource SDK for iOS.
4- I was able to run the demo application downloaded using the SDK.
5- When I run the demo application, I get this error.
"Transaction Details .Accepted: No .Auth Amount: (null) Error: Unknown error"
I provided my trading account correctly. There are other fields that I'm not sure how to get these values
static NSString* kMetadataEncodedValue = @"RklEPUNPTU1PTi5MRy5JTkFQUC5QQVlNRU5U"; static NSString* const kPaymentSolutionDefaultValue = @"001"; static NSString* const kEnvTest = @"test"; static NSString* const kEnvLive = @"live"; static NSString* const kKeyMerchantID = @"merchant_otm_eyebuy_acct"; static NSString* const kKeyMerchantExternalID = @"merchant_otm_eyebuy_acct"; static NSString* const kKeyTransactionKey = @"transactionKey"; static NSString* const kKeyEncryptedBlob = @"encryptedBlob"; static NSString* const kKeyEnv = @"env"; - (IBAction)payButtonTouchDown:(id)sender { [self.amountTextField resignFirstResponder]; NSString* requestType = [self.requestTypeSelection titleForSegmentAtIndex:self.requestTypeSelection.selectedSegmentIndex]; [self updateStatusMessage:[NSString stringWithFormat:@"Submitting %@ request...", requestType]]; self.payButton.enabled = NO; NSString *amountText = self.amountTextField.text; NSDecimalNumber *amountValue = [NSDecimalNumber decimalNumberWithString:amountText]; BOOL isDecimal = amountValue!= nil; if (isDecimal) {
Where can I get all these values. he will be highly appreciated if any of them lists all the steps involved in integrating Apple payments through CyberSource. Also, please do not contact the Apple developer, as I read Apple Pay details on Apple Developer.
source share