Skip to main content

Texture Connect

Texture Connect is the name of the flow through which your end users can go through to establish a connection to their devices via Texture.

Connect Flow Screenshot

Currently, we support 3 different methods for connecting a device to the Texture platform via the Connect flow.

  1. Link creation via Texture API (see our open source examples)
  2. Texture Connect SDK JavaScript, React, or React Native
  3. Directly via the Texture Dashboard (Direct link to the Connect Flow)

The method you select depends on how you are looking to integrate the Texture platform into your own application and the level of effort you are able to provide for it.

Fields

Using the Connect flow is the way you first introduce a device to the Texture platform and as a result, there are a series of fields you need to provide that will allow you track and manage the connected devices later. You will need to provide these items regardless of the manner in which you decide to connect the device.

fieldrequireddetails
referenceIdyesAny unique identifier to reference this device in your system. Often a userId, an identifier for this device or this site. Anything that you can use to identify and find the connected device later on your end.
tagsnoAn optional array of tags which can be used for grouping your devices. Could be some kind of identifier for a group on your end (like a groupId) or it could be any other way you group devices (e.g. by location boston or connecticut or flatiron) whatever you think you may want to aggregate device data by or run batch controls on devices. These will be alterable later by API so you can add and remove tags later.
redirectUrlyesThis is the url where your user will be redirected after they complete the Connect flow. Generally a link into your application. Could be a web url (e.g. https://mycompany.com/app) or a deeplink into a mobile app (e.g. myapp://device/connected). Note the redirect url will have the texture_scoped_key appended to it as a query parameter which, depending on your use case, you may want to store in your app or in your own backend. See the docs for Scoped Keys for more details.
clientNamenoThis is what will appear in our Connect flow as your company name which your end user will see. In the above screenshot the company name is "Energy Coffee" and this value would go there. If you do not specify a value here it will default to your Organization name, hence why it is optional. But your use case may be connecting devices on behalf of a client and so we include this as an option for maximum flexibility.
manufacturerFiltersnoAn optional object allowing different filters to restrict or narrow down the manufacturers available in the connect flow.
NameDescriptionExample
manufacturersRestricts the manufacturers available to those specified in this list. If only 1 manufacturer is specified, the manufacturers selection/search page in the connect flow will be skipped.["enphase", "tesla"]
deviceTypesRestricts the manufacturers available to those that have devices available of the specified types.["battery"]
customerInfonoAn optional object to allow passing in information related to the customer for which the connect link session is for.
NameDescriptionExample
firstNameThe first name of the customer going through the connect flow.John
lastNameThe last name of the customer going through the connect flowDoe
emailEmail associated with the customer going through the connect flow.example@example.com
phonePhone number associated with the customer going through the connect flow.555-555-0100

Link creation can be done via the Texture API using one of your API Keys .

Texture API > Post Connections

Texture Connect SDK

Our Connect SDK provides a bit less configurability, but is the easiest way to get started with connecting devices to the Texture platform for your Organization.

Installation

Javascript/Typescript

Simply install it from NPM

$ npm install @texturehq/connect-sdk

or if you prefer Yarn:

$ yarn add @texturehq/connect-sdk

Including via CDN also works (recommend pinning a specific version in this case instead of latest). A Texture property will be added to the global window object.

<script src="https://unpkg.com/@texturehq/connect-sdk@latest/dist/connect-sdk.iife.js"></script>

and then use it!

React

Simply install it from NPM

$ npm install @texturehq/react-connect-sdk

or if you prefer Yarn:

$ yarn add @texturehq/react-connect-sdk

and then use it!

React Native

Simply install it from NPM

$ npm install @texturehq/react-native-connect-sdk

or if you prefer Yarn:

$ yarn add @texturehq/react-native-connect-sdk

and then use it!

Usage

Javascript/Typescript

import { createConnectSession } from "@texturehq/connect-sdk-web";

const texture = createConnectSession({
connectApiKey: "<connect-api-key>",
connectOptions: {
referenceId: "<reference-id-from-your-system>",
clientName: "Name for your application",
redirectUrl: "https://your-application.com/redirect",
tags: ["tag1", "tag2"],
manufacturerFilters: { manufacturers: ['honeywell', 'daikin'] },
customerInfo: {
email: "example@example.com",
phone: "555-555-0100",
firstName: "John",
lastName: "Doe",
},
},
onSuccess: ({ scopedKey }) => {
// The scopedKey returned is a string that can be used to make requests to Texture API
// to retrieve data related to the newly connected account
},
onError: ({ type, reason }) => {
// The error object contains a type and reason
// type is identifier for the type of error that occurred
// reason is a string that provides more information about the error
// type 'popup-blocked' means that the popup window was blocked from opening
// type 'popup-closed' means that the popup window was closed before the connection was established
},
});

// Open the popup window
texture.open();

// You can also pass in options when opening the popup window
texture.open({
width: 500,
height: 600,
});

// Close the popup window
texture.close();

// Get the current link/connect url
console.log(texture.url);

// Get the current scoped key (only available after a successful flow is completed)
console.log(texture.scopedKey);

React

The Texture Connect SDK exposes a useCreateConnectSession hook which will handle much of the process for creating a link session.

It returns a method called "open" which you can call from your React code whenever you would like to open a pop-up which will guide the user through connecting their device to your application via the Texture platform.

import { useCreateConnectSession } from "@texturehq/react-connect-sdk";

function App() {
const { open } = useCreateConnectSession({
connectApiKey: "<connect-api-key>",
connectOptions: {
referenceId: "<reference-id-from-your-system>",
clientName: "Name for your application",
redirectUrl: "https://your-application.com/redirect",
tags: ["tag1", "tag2"],
manufacturerFilters: { manufacturers: ['honeywell', 'daikin'] },
customerInfo: {
email: "example@example.com",
phone: "555-555-0100",
firstName: "John",
lastName: "Doe",
},
},
onSuccess: (session) => {
console.log(session);
},
onError: (error) => {
console.log(error);
},
});

return (
<>
<div className="card">
<button onClick={() => open()}>Open Texture</button>
</div>
</>
);
}

export default App;

React Native

The Texture Connect SDK exposes a TextureConnect component which will handle much of the process for creating a link session.

Wrap TextureConnect around a component, and your component will become a button that opens the Connect flow from your React Native code. It displays as a popover which will guide users through connecting their devices to your application via the Texture Platform.

It's worth noting you should supply the redirectUrl to the TextureConnect props via connectOptions, this should be the custom URL scheme of your mobile app. e.g: facebook://

import { TextureConnect } from '@texturehq/react-native-connect-sdk';

// ...

return (
<GestureHandlerRootView style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<TextureConnect
connectApiKey="<YOUR_CONNECT_API_KEY>"
connectOptions={{
clientName: 'Texture Connect',
referenceId: '123',
redirectUrl: 'example://',
manufacturerFilters: { manufacturers: ['honeywell', 'daikin'] },
}}
onError={(type, reason) => console.log(type, reason)}
onSuccess={(scopedKey) => console.log("Texture Scoped Key", scopedKey)}
>
<Text>Tap here to connect a device.</Text>
</TextureConnect>
</GestureHandlerRootView>
);
}

Examples

Check out some examples in our open source repository.

📘 What if I have the user or device credentials already?

Some manufacturers and devices require this authentication flow to be completed by end users to connect to the device and others do not which is why we provide this flow.

However, it is quite possible that you already have user credentials or you have direct access to credentials through the manufacturer.

We can work with you directly to ingest those credentials or use your credentials with the manufacturer, please contact us and we can help!