Enable everyone in your organization to access their data in the cloud — no code required.
Learn More →Viewing LinkedIn Data in RAD Studio Data Explorer
How to view LinkedIn data in RAD Studio Data Explorer using the CData FireDAC Components for LinkedIn.
Embarcadero RAD Studio provides a development environment for Delphi and C++Builder applications. With the CData FireDAC Components for LinkedIn, you gain access to live LinkedIn data within RAD Studio, abstracting the data into tables, views, and stored procedures that can be used to both retrieve and update LinkedIn data. This article will walk through connecting to LinkedIn using the Data Explorer.
Connecting to LinkedIn Data Using Data Explorer
You can create a simple application for displaying LinkedIn data by utilizing the CData FireDAC Components for LinkedIn and a new VCL Forms Application:
- Open the Data Explorer in RAD Studio and expand FireDAC.
Right-click on CData LinkedIn Data Source and click Add New Connection.
- Name the connection.
Fill in the necessary connection parameters and click OK.
LinkedIn uses the OAuth 2 authentication standard. You will need to obtain the OAuthClientId and OAuthClientSecret by registering an app with LinkedIn. For more information refer to our authentication guide.- Back in the Data Explorer, expand the tables for the connection.
Create a new VCL Forms application and drag a table (for example: CompanyStatusUpdates) onto the form.
- Select the CompanyStatusUpdatesTable object on the form and set the Active property to true.
Right-click on the object, bind visually, and link everything (*) to a new control (TStringGrid).
Arrange the TStringGrid on the form and run the application to see the CompanyStatusUpdates data.