Building the Connection URL
Use the connection URL to supply connection information to the data store that you are accessing. The following is the format of the connection URL for the Simba PayPal JDBC Connector:
jdbc:paypal://localhost;Host=[InstanceURL];Auth_Type=OAuth 2.0;[Property1]=[Value];[Property2]=[Value];...
The variables are defined as follows:
- [InstanceURL] is the URL of the PayPal instance that you are connecting to.
- [Property] is any one of the other connection properties supported by the connector. At minimum, you must set the properties that provide your access token or PayPal service information for authentication.
For information about configuring authentication, see Configuring Authentication. For a list of the properties available in the connector,
For example, to connect to PayPal and authenticate the connection using an access token, you would use the following connection URL:
jdbc:paypal://localhost;Host=api.sandbox.paypal.com;Auth_Type=OAuth 2.0;Auth_AccessToken=kP9PcyQ7prK2LwUMZMpFQ4R+5VE
Important:
Do not duplicate properties in the connection URL.