This package has been deprecated

Author message:

no longer maintained

@financial-times/next-ft-developer-client

3.1.0 • Public • Published

next-ft-developer-client Circle CI

This modules provides a client for calling the FT Developer API

Requirements

Install

npm install @financial-times/next-ft-developer-client --save

Set up the following environmental variables:

  • FT_DEVELOPER_API_URL - https://api.ft.com/
  • FT_DEVELOPER_API_KEY - your API key
  • FT_DEVELOPER_CLIENT_NAME - your client ID

FT Next products already have these available

Security

Calls to get user data must be made over HTTPS

Authorisation tokens

For some API calls, the FT Developer API uses the FT_Session_s cookie to identify the user session. This is similar to the FT_Session cookie, but is a secure (https-only) cookie.

For FT Next apps, it is available via the FT-Session-s-Token header.

Usage

const nextFTDeveloperClient = require('@financial-times/next-ft-developer-client');

User profile

User profile always requires the user ID and FT_Session_s token

// get the full unadulterated user profile data
nextFTDeveloperClient.getUserProfile(FTSessionSToken, uuid).then(etc...);

// get a single item, like the user's email
const options = { fields: 'email' };
nextFTDeveloperClient.getUserProfile(FTSessionSToken, uuid, options).then(etc...);
// returns 'someone@somewhere.com'

// get multiple items, like the user's email and first name
const options = {
	fields: ['email', 'firstName']
};
nextFTDeveloperClient.getUserProfile(FTSessionSToken, uuid, options).then(etc...);
// returns { email: 'someone@somewhere.com', firstName: 'Someone' }

// send through scope
const options = {
	scope: 'profile_dem'
}
nextFTDeveloperClient.getUserProfile(FTSessionSToken, uuid, options).then(etc...);
// returns user data as per that scope

Mapped user profile items

  • email
  • firstName
  • lastName
  • primaryTelephone
  • homeAddress
  • address1
  • address2
  • townCity
  • postcode
  • state
  • country
  • marketing
  • ftByEmail
  • ftByPost
  • demographics
  • industry
  • position
  • responsibility
  • href

If you enter a bad key name, logger will log a warning, and your returned object will only have valid keys

User products

User products only require the user ID.

// get the user's products
nextFTDeveloperClient.getUserProducts(uuid);
// returns an array of product codes, e.g ['P0', 'Tools']

Contributing

  • Clone this repo
  • Make your changes on a branch
  • Merge into master (with approval)
  • The module will automatically publish to npm upon a new master tag (v.X.X.X)

Readme

Keywords

Package Sidebar

Install

npm i @financial-times/next-ft-developer-client

Weekly Downloads

1

Version

3.1.0

License

none

Last publish

Collaborators

  • robertboulton
  • seraph2000
  • hamza.samih
  • notlee
  • emmalewis
  • aendra
  • the-ft
  • rowanmanning
  • chee
  • alexwilson