Build on iOS
Open the Square Point of Sale application from your mobile iOS application to process in-person payments using Square hardware.
The example code in this topic assumes the following:
You are using the Point of Sale SDK for iOS. The Point of Sale SDK for iOS provides a helpful wrapper around the Point of Sale API, which simplifies the development process.
You are using a personal access token as your authorization token. The Point of Sale API does not support the Square Sandbox at this time. Personal access tokens are appropriate for testing and development.
To use the steps in this topic, you need:
You need a valid access token. You should test with Sandbox credentials whenever possible. For more information, see Access Tokens and Other Square Credentials.
You should install the latest version of the Square Point of Sale application from the Apple App Store to use with the latest version of the Point of Sale SDK for iOS.
To check your installed version of the Point of Sale application:
Open the Point of Sale application.
Choose Help, and then choose Support.
Scroll to the bottom of the Support screen.
If you must use an older version of the Point of Sale SDK, you need to install a compatible version of the Point of Sale application:
Point of Sale version | iOS SDK version | iOS version |
---|---|---|
4.59 and later | v1.3 | 14 |
4.53 and later | v1.2 | 14 |
4.50 and later | v1.1 | 14 |
4.34 and later | v1.0 | 14 |
The Square Point of Sale application for iOS only accepts requests if it can authenticate the source of the request. Square uses the following to authenticate application requests:
Application bundle ID. The Square Point of Sale application uses the bundle ID of an application to validate the source of incoming requests.
Application URL scheme (such as
myapp-url-scheme
). The URL scheme you provide must match theCFBundleURLSchemes
attribute of the Info.plist file for your application.
To register your application:
Open the Developer Dashboard.
In the pane, choose Point of Sale API.
In the iOS section, enter your application bundle IDs and URL schemes.
Choose Save.
To install the Point of Sale SDK manually, download the SquarePointOfSaleSDK-iOS repo in GitHub.
If you use Cocoapods to manage your dependencies, install the Point of Sale SDK by adding the following to your podfile:
When installed, you can use the following commands to ensure that you have the most recent version of Point of Sale SDK installed.
If you use Carthage to manage your dependencies, install the Point of Sale SDK with the following shell command:
Add the request URL scheme as a
LSApplicationQueriesSchemes
key into your Info.plist file to indicate that your application uses thesquare-commerce-v1
URL scheme to open Square Point of Sale.Add your custom response URL scheme as
CFBundleURLTypes
keys in your Info.plist file.
For more information about defining custom URL schemes and handling requests that use them, see Apple's App Programming Guide for iOS.
Create an SCCAPIRequest
object with the details of your payment.
Did you know?
Information in the notes
field is saved in the Seller Dashboard and printed on receipts.
Use the SCCAPIConnection
class to send your SCCAPIRequest
to the Square Point of Sale application.
You need to add code to receive results from the Square Point of Sale application and do something with it.
The following sample code implements the application:openURL:options: method in your UIApplicationDelegate to receive the results. If the transaction succeeds, the sample code prints the newly created checkout object; otherwise, it prints the error description.
Important
Your application should keep track of whether a Point of Sale API request has been issued and whether a callback has been received. Because of the constraints of application-switching APIs, sellers can leave Square Point of Sale during an API request and return to your application. It is your responsibility to direct them to return to Square and finish the transaction.
Sign in to the Square Point of Sale application with the business location that you want to use to accept payments.
Open your application and initiate a transaction.
Test your callbacks:
Test the cancellation callback by canceling a transaction.
Test the success callback by completing a cash transaction.
The Sandbox does not support credit card testing for mobile. To test with credit cards in production, connect your Square Reader, process small card payments (as low as $1 USD), and then issue refunds from Square Point of Sale. To test your application in development, see Testing for supported countries.
Now that you have a basic build in place, expand on it by integrating with the Square Payments API and Refunds API.
If you need more assistance, contact Developer Support or ask for help in the Developer Forums.