Socket
Socket
Sign inDemoInstall

@meshconnect/web-link-sdk

Package Overview
Dependencies
10
Maintainers
5
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @meshconnect/web-link-sdk

A client-side JS library for integrating with Mesh Connect


Version published
Weekly downloads
738
increased by6.96%
Maintainers
5
Install size
2.62 MB
Created
Weekly downloads
 

Readme

Source

A client-side JS library for integrating with Mesh Connect

Install

With npm:

npm install --save @meshconnect/web-link-sdk

With yarn

yarn add @meshconnect/web-link-sdk

Link token should be obtained from the GET /api/v1/linktoken endpoint. Api reference for this request is available here. Request must be preformed from the server side because it requires the client secret. You will get the response in the following format:

{
  "content": {
   "linkToken": "{linktoken}"
},
  },
  "status": "ok",
  "message": ""
}

You can use linkToken value from this response to open the popup window with openLink method.

Generating connection method

import { createLink } from '@meshconnect/web-link-sdk';

// ...

const linkConnection = createLink({
  clientId: '<Your Mesh Connect Client Id>',
  onIntegrationConnected: (data: LinkPayload) => {
    // use broker account data
  },
  onExit: (error?: string) => {
    if (error) {
      // handle error
    } else {
      // ...
    }
  }

To open authentication link provided by Front Finance Integration API you need to call openLink method:

linkConnection.openLink(linkToken)

ℹ️ See full source code example at react-example/src/ui/Link.tsx

import {
  createLink,
  Link,
  LinkPayload
} from '@meshconnect/web-link-sdk'

// ...

const [linkConnection, setLinkConnection] = useState<Link | null>(
  null
)

useEffect(() => {
  setLinkConnection(createLink(options))
}, [])

useEffect(() => {
  if (authLink) {
    linkConnection?.openLink(linkToken)
  }
}, [linkConnection, authLink])

return <></>

Getting tokens

After successfull authentication on the Link session, the popup will be closed and the broker tokens will be passed to the onIntegrationConnected function. Link instance will check if URL contains query parameters, load broker tokens and fire the events.

Available Connection configuration options

ℹ️ See src/types/index.ts for exported types.

keytypedescription
clientIdstringKeys from https://dashboard.getfront.com/company/keys page
onIntegrationConnected(payload: LinkPayload) => voidCallback called when users connects their accounts
onExit((error?: string | undefined) => void) | undefinedCalled if connection not happened
onTransferFinished(payload: TransferFinishedPayload) => voidCallback called when a crypto transfer is executed
onEvent(payload: LinkEventType) => voidA callback function that is called when various events occur within the Front iframe
accessTokensIntegrationAccessToken[]An array of integration access tokens
keytypedescription
openLink(linkToken: string) => Promise<void>Opens the Link UI popup
closeLink() => Promise<void>Closes the Link UI popup

Using tokens

You can use broker tokens to perform requests to get current balance, assets and execute transactions. Full API reference can be found here.

Typescript support

TypeScript definitions for @meshconnect/web-link-sdk are built into the npm package.

FAQs

Last updated on 01 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc