|
||
If you wish to customize any aspect of the Data.com integration, you need to request your own API access token from Data.com.
|
Important!
Modifying or extending the default functionality without using your own Data.com token is a violation of the licensing terms.
|
Follow the steps below if you need to work with a custom Data.com access token in your API:
1. Open your web project in Visual Studio.
2. Create a new class:
•In the project's App_Code folder (or Old_App_Code if the project is installed as a web application)
OR
•As part of a custom assembly (Class library)
3. Add a reference to the CMS.DataCom namespace:
[C#]
using CMS.DataCom; |
4. Make the class implement the ITokenProvider interface.
5. Add the GetToken() method and return your Data.com token as a string:
[C#]
public class CustomDataComTokenProvider : ITokenProvider |
Whenever you call the DataComHelper.CreateClient method in your custom code, add an instance of your ITokenProvider class as a parameter:
[C#]
using CMS.DataCom; |