To integrate with Express Checkout have your API credentials ready and read on.
Step 1 - Send your transaction data to PayPal (your API credentials are required for safety):
| <?xml version="1.0" encoding="UTF-8"?> | |
| <CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/"> | |
| <CORSRule> | |
| <AllowedOrigin>*</AllowedOrigin> | |
| <AllowedMethod>PUT</AllowedMethod> | |
| <AllowedMethod>POST</AllowedMethod> | |
| <AllowedMethod>GET</AllowedMethod> | |
| <AllowedMethod>HEAD</AllowedMethod> | |
| <MaxAgeSeconds>3000</MaxAgeSeconds> | |
| <AllowedHeader>*</AllowedHeader> |
| public abstract class JdbiIntegrationTest { | |
| private DBI dbi; | |
| private Handle handle; | |
| private Liquibase liquibase; | |
| protected abstract DatabaseConfiguration getDatabaseConfiguration(); |
To integrate with Express Checkout have your API credentials ready and read on.
Step 1 - Send your transaction data to PayPal (your API credentials are required for safety):
| #!/bin/sh -e | |
| # Running this script will disable the on-access (real-time) scanner in F-Secure Anti-Virus for Mac | |
| # while preserving the ability to use the on-demand (manual) scanner. | |
| # | |
| # Note that this *will* make the UI persistently tell you that there is a problem with real-time | |
| # scanning. Which is true, because you disabled it. :-) | |
| # | |
| # NOTE THAT THIS WILL MAKE YOUR COMPUTER UNPROTECTED. DO THIS AT YOUR OWN RISK! | |
| # NOTE THAT THIS WILL MAKE A BACKUP COPY IN YOUR "Documents" FOLDER. KEEP IT. | |
| # NOTE THAT THIS IS AN UNSUPPORTED HACK. IT MAY STOP WORKING AT ANY TIME. |