@bloomprotocol/share-kitdeprecated

Easily allow your users to share their verified personal information directly with your application.

Usage no npm install needed!

<script type="module">
  import bloomprotocolShareKit from 'https://cdn.skypack.dev/@bloomprotocol/share-kit';
</script>

README

Share Kit

Share Kit

Easily allow your users to share their verified personal information directly with your application.

Installation

npm install --save @bloomprotocol/share-kit

Implementations

Name Description Status
share-kit Plain DOM implementation :white_check_mark:
share-kit-react React wrapper for renderRequestElement :white_check_mark:
share-kit-reactnative React Native implementation for renderRequestButton :white_check_mark:
share-kit-vue Vue wrapper for renderRequestElement :white_check_mark:
bloom_share_kit Flutter implementation of renderRequestButton :white_check_mark:

Usage

renderRequestElement will render a QR code or button based on the client's platform. By default it will render a button when the client is mobile or tablet and on iOS.

import {renderRequestElement, RequestData, QROptions} from '@bloomprotocol/share-kit'

const requestData: RequestData = {...}
const qrOptions: Partial<QROptions> = {
  size: 200,
}
const callbackUrl = 'https://mysite.com/bloom-callback'
const container = document.createElement('div')

const {update, remove} = renderRequestElement({container, requestData, qrOptions, callbackUrl})

// Update the element
update({requestData: newRequestData, qrOptions: newQROptions, callbackUrl: newCallbackUrl})

// Remove the element
remove()

Types

RequestDataAuthentication

Data to be rendered into the RequestQRCode for authentication requests.

Name Description Type
action Action type Action
token Unique string to identify this data request string
url The API endpoint to POST the ResponseData to.
See below for details
string
org_logo_url A url of the logo to display to the user when requesting data string
org_name The name of the organization requesting data string
org_usage_policy_url The url of the usage policy for the organization requesting data string
org_privacy_policy_url The url of the privacy policy for the organization requesting data string

RequestDataAttestation

Data to be rendered into the RequestQRCode for attestation sharing requests.

Name Description Type
action Action type Action
token Unique string to identify this data request string
url The API endpoint to POST the ResponseData to.
See below for details
string
org_logo_url A url of the logo to display to the user when requesting data string
org_name The name of the organization requesting data string
types The type of attestions required and the amount needed TAttestationTypeNames
org_usage_policy_url The url of the usage policy for the organization requesting data string
org_privacy_policy_url The url of the privacy policy for the organization requesting data string

TAttestationTypeNames

Type Description Source Platforms
'phone' SMS verification Twilio iOS, Web
'email' Email verification Mailgun iOS, Web
'facebook' Facebook verification Facebook iOS, Web
'google' Google verification Google iOS, Web
'linkedin' LinkedIn verification LinkedIn iOS, Web
'twitter' Twitter verification Twitter iOS, Web
'id-document' Identity document verification Acuant Web
'sanction-screen' Sanction person screening BlockScore iOS, Web
'pep-screen' Politically exposed person screen KYC2020 iOS, Web
'income' Income verification Quovo Web
'assets' Assets verification Quovo Web

TAttestationTypeNames Subtypes

Type Description Platforms
'full-name' Subtype of 'facebook', 'linkedin', 'sanction-screen', 'pep-screen', and 'id-document' attestation iOS, Web
'birth-date' Subtype of 'sanction-screen', 'pep-screen', and 'id-document' attestations iOS, Web
'gender' Subtype of 'id-document' attestation Web
'supplemental' Subtype of 'income' and 'assets' attestations Web

For more information, see the full list of attestation types that are implemented / planned to be implemented.

Appending to URL

The user can share by tapping a button or scanning a QR code, sometimes you'll need to know the difference so the query param share-kit-from is appended to your url.

The param will either be share-kit-from=qr OR share-kit-from=button.

// Input
'https://receive-kit.bloom.co/api/receive'

// Output
'https://receive-kit.bloom.co/api/receive?share-kit-from=qr'

Works if your url already has a query param too!

// Input
'https://receive-kit.bloom.co/api/receive?my-param=',

// Output
'https://receive-kit.bloom.co/api/receive?my-param=&share-kit-from=qr',

Example

Attestation data request:

{
  action: Action.attestation,
  token: '0x8f31e48a585fd12ba58e70e03292cac712cbae39bc7eb980ec189aa88e24d043',
  url: 'https://receive-kit.bloom.co/api/receive',
  org_logo_url: 'https://bloom.co/images/notif/bloom-logo.png',
  org_name: 'Bloom',
  org_usage_policy_url: 'https://bloom.co/legal/terms',
  org_privacy_policy_url: 'https://bloom.co/legal/privacy',
  types: ['full-name', 'phone', 'email'],
}

Authentication/login request:

{
  action: Action.authentication,
  token: '0xabcdee48a585fd12ba58e70e03292cac7fbac958b591baf9cbe9ac157cbadefa',
  url: 'https://receive-kit.bloom.co/api/receive',
  org_logo_url: 'https://bloom.co/images/notif/bloom-logo.png',
  org_name: 'Bloom',
  org_usage_policy_url: 'https://bloom.co/legal/terms',
  org_privacy_policy_url: 'https://bloom.co/legal/privacy',
  types: [],
}

Sample QR

Sample Button

QROptions

NOTE: Does not apply to the rendered button

Display options for the rendered QR code.

Name Description Type Default
size The height and width of the QR code. number 128
bgColor The background color of the QR code. string #fff
fgColor The foreground color of the QR code. string #6067f1
logoImage The <img /> src to displayed over the QR code. string Bloom logo
hideLogo Whether the logoImage should be rendered. boolean false
padding Percentage of the size of the QR code that will be padding. This will be the same color as bgColor number 0

ButtonOptions

NOTE: This is only used with the rendered button and not the QR code.

Rendering options for the rendered button.

Name Description Type Required Default
buttonCallbackUrl The url the user will be sent back to after they share their data. string Y N/A
size The size of the button 'sm' | 'md' | 'lg' N 'lg'
type The type of button, based on the given size See below N See below

ButtonType

The type of button to rendered based on it's size

Size Type Required Default
sm 'square' \| 'rounded-square' \| 'circle' \| 'squircle' Y N/A
md 'log-in' \| 'sign-up' \| 'connect' \| 'bloom' \| 'verify' N 'verify'
lg 'log-in' \| 'sign-up' \| 'connect' \| 'bloom' \| 'verify' N 'verify'

Example:

  • Small:

    • Square

      small sqaure

    • Rounded Square

      small rounded-sqaure

    • Circle

      small circle

    • Squircle

      small squircle

  • Small Inverted:

    • Small buttons can have thier foreground and background colors swaped with the invert flag

      small inverted buttons

  • Medium:

    • Log In

      medium log-in

    • Sign Up

      medium sign-up

    • Connect

      medium connect

    • Bloom

      medium bloom

    • Verify

      medium verify

  • Large:

    • Log In

      large log-in

    • Sign Up

      large sign-up

    • Connect

      large connect

    • Bloom

      large bloom

    • Verify

      large verify

Using Share Kit for BloomID Sign-In

In conjuction with this libary you will use Verify Kit to verify shared data on your server.

Complete examples are available at Bloom Starter.