Add Card Pay to your project
Card Pay is a single use Card Input form that returns a cnon:nonce_here through a completion block to allow you to proccess the transaction.
Example Application
To see an example Swift application click here
Steps
-
Add imports to the top of the file
Even though you interface with SquareInAppPaymentsSwiftUI you still have to import SquareBuyerVerificationSDK and SquareInAppPaymentsSDK so that you can use some of its Struct Types that let you pass data in.
import SwiftUI import SquareInAppPaymentsSwiftUI import SquareBuyerVerificationSDK import SquareInAppPaymentsSDK
-
Create a button in your view
var body: some View { VStack { Button("Card Pay", action: cardPayAction) } }
-
Add the Card Pay initilizer function
Verify Buyer can be set to
nil
if you do not want to verify the users card, see Step 4 on how to create a Verify Buyervar body: some View { VStack { Button("Card Pay", action: cardPayAction) } } func cardPayAction() { SQIP.cardPay.present(verifyBuyer: //Verify Buyer, completion: //Completion function ) }
-
How to implement Verify Buyer
To create a Verify Buyer create a
let
and assign itSQIPVerifyBuyerSwiftUI()
- Create a
let
and assign string of Square Location ID - Create a
SQIPContact()
and assign values - Create a
SQIPMoney()
and insert amount and currency
How to find your Location ID:
- Go to https://developer.squareup.com.
- Click Developer Dashboard.
- Click on + New Application.
- Name the application and click on Create Application
- The Location ID(s) for your Square account can be found in the Locations tab of your Developer Dashboard.
Before copying the Location ID, check that the top of the page that you have selected either “Sandbox” or “Production”.
SQIPContact
You should build the SQIPContact object with as many contact field values as possible. You must provide the given name. The contact family name and city should be provided. The more complete the contact object, the lower the chance that the buyer is challenged by the card-issuing bank.
** SQIPMoney**
SQIPMoney will charge the card payment source ID with amount in the specified currency
amount Amount of money that will be charged (i.e 100 in GBP will be £1.00) currency The currency the payment source ID will be charged in. var body: some View { VStack { Button("Card Pay", action: cardPayAction) } } func cardPayAction() { // See above to find out where to get Location ID let locationID = "Your Location ID" // See above for more information on SQIPContact let contact = SQIPContact() contact.givenName = "John" contact.familyName = "Doe" contact.email = "johndoe@example.com" contact.addressLines = ["London Eye","Riverside Walk"] contact.city = "London" contact.country = "UK" contact.postalCode = "SE1 7" contact.phone = "8001234567" // See above for more information on SQIPMoney let money = SQIPMoney(amount: 100, currency: .GBP) let buyer = SQIPVerifyBuyerSwiftUI(locationID, contact, money) SQIP.cardPay.present(verifyBuyer: buyer, completion: //Completion function ) }
- Create a
-
Next you will need to create a completion function that will handle forwarding the card token to your own server to proccess the transaction.
Copy and past this into your project
How it works
How you choose to proccess the card nonce and verification token is up to you, we have provided an example below.
The Card Nonce is provided at
card.nonce
and the Verification Token is provided atverify?.verificationToken
Verification Token is optional because it becomesnil
if no verify buyer is provided toSQIP.cardPay.present()
completionHandler()
When payment is successfull call
completionHandler(nil)
inside the function to indicate a successfull transactionWhen the payment is not successfull then call
completionHandler(error)
, error should be of typeNSError
for example:
let error = NSError(domain: "", code: 0, userInfo: ["Transaction Error": "We could not proccess your transaction"])
var body: some View { VStack { Button("Card Pay", action: cardPayAction) } } func cardPayAction() { // Verify buyer as from above SQIP.cardPay.present(verifyBuyer: seeAbove, completion: proccessCardToken) } func proccessCardToken(card: SQIPCardDetails, verify: SQIPBuyerVerifiedDetails?, completionHandler: @escaping (Error?) -> Void) { }
Example function for proccessing a transaction
Take the result of
card
andverify
if you chose to verify buyersvar body: some View { VStack { Button("Card Pay", action: cardPayAction) } } func cardPayAction() { // Verify buyer as from above SQIP.cardPay.present(verifyBuyer: seeAbove, completion: proccessCardToken) } func proccessCardToken(card: SQIPCardDetails, verify: SQIPBuyerVerifiedDetails?, completionHandler: @escaping (Error?) -> Void) { let cardToken = card.nonce let verifyToken = verify?.verificationToken let httpBody = [ "cardToken": cardToken, "verifyToken": verifyToken ] var request = URLRequest(url: "https://example.com/api/pay") request.httpMethod = "POST" request.httpBody = httpBody URLSession.shared.dataTask(with: request) { data, response, error in guard let httpResponse = response as? HTTPURLResponse, httpResponse.statusCode == 200 else { // Return NSError to completionHandler() to indicate unsuccessfull transaction let error = NSError(domain: "", code: 0, userInfo: ["Transaction Error": "We could not proccess your transaction"]) completionHandler(error) return } // Return nil to completionHandler() to indicate successful transaction completionHandler(nil) return } }
The Result
![]() |
![]() |