![]() |
VOOZH | about |
The CData API Server produces secure feeds of Unbounce data that you can consume in PowerBuilder DataWindows. The API Server supports the major Web services, including OData, Atom, JSON, HTML, CSV, TSV, and RSS. It also supports the major authentication schemes and SSL.
This article shows how to create a DataWindow that uses the CData API Server to retrieve data.
Follow the steps below to begin producing secure Unbounce OData services:
The API Server runs on your own server. On Windows, you can deploy using the stand-alone server or IIS. On a Java servlet container, drop in the API Server WAR file. See the help documentation for more information and how-tos.
The API Server is also easy to deploy on Microsoft Azure, Amazon EC2, and Heroku.
After you deploy the API Server, provide authentication values and other connection properties needed to connect to Unbounce by clicking Settings -> Connections and adding a new connection in the API Server administration console.
Start by setting the Profile connection property to the location of the Unbounce Profile on disk (e.g. C:\profiles\Unbounce.apip).
Next, set the ProfileSettings connection property to the connection string for Unbounce (see below).
Unbounce uses OAuth to authenticate to your data.
In order to authenticate to Unbounce, you will first need to register an OAuth application. To do so, go to https://developer.unbounce.com/getting_started/ and complete the Register OAuth Application form.
After setting the following connection properties, you are ready to connect:
You can then choose the Unbounce entities you want to allow the API Server access to by clicking Settings -> Resources.
Additionally, click Settings -> Server and change the following settings for compatibility with PowerBuilder:
After determining the OData services you want to produce, authorize users by clicking Settings -> Users. The API Server uses authtoken-based authentication and supports the major authentication schemes. Access can also be restricted based on IP address; by default, only connections to the local machine are allowed. You can authenticate as well as encrypt connections with SSL.
Follow the steps below to use the Database Painter tool to create a database profile for the OData API of the API Server. In the Database Painter, you can graphically manipulate data as well as execute SQL queries.
http://MyServer:8080/api.rsc
You can use standard PowerBuilder objects to connect to OData feeds and execute queries. The following example shows how to retrieve Unbounce data into a DataWindow.
You can add the following code to the open method:
SQLCA.DBMS = "ODT" SQLCA.DBParm = "ConnectString='URI=http://MyServer:8080/api.rsc;UID=MyAPIUser;PWD=MyAuthtoken'"; CONNECT USING SQLCA; dw_tags.SetTransObject(SQLCA); dw_tags.Retrieve();
Learn more or sign up for a free trial:
CData API Server