MyIdentity Smart Buttons gives your business a simplified and secure way to accessing user’s personal information.
Click the button below to experience a complete identification with MyIdentity:
{
"firstName": "John",
"lastName": "Smith",
"isAlive": true,
"age": 27,
"address": {
"streetAddress": "21 2nd Street",
"city": "New York",
"state": "NY",
"postalCode": "10021-3100"
},
"phoneNumbers": [
{
"type": "home",
"number": "212 555-1234"
},
{
"type": "office",
"number": "646 555-4567"
}
],
"children": [],
"spouse": null
}
Now that you have seen the button in action, add the button code to your site. Copy and paste this code into an HTML page and view it in your browser. You’ll use the code to start a basic integration.
<script src="https://www.myidentity.bio/sdk/js?client-id=test"></script>
<script>myidentity.Buttons().render('body');</script>
Tip: To log in to MyIdentity after you click the smart button, create a sandbox account.
Before you begin the integration, here’s a big-picture view of how the MyIdentity Smart Button integration works:
This integration guide helps you to:
To generate REST API credentials for the sandbox and live environments:
<!DOCTYPE html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
</head>
<body>
<script
src="https://www.myidentity.bio/sdk/js?client-id=YOUR_CLIENT_ID"> // Required. Replace YOUR_CLIENT_ID with your sandbox client ID.
</script>
</body>
<body>
<script
src="https://www.myidentity.bio/sdk/js?client-id=YOUR_CLIENT_ID"> // Required. Replace YOUR_CLIENT_ID with your sandbox client ID.
</script>
<div id="myidentity-button-container"></div>
<script>
myidentity.Buttons().render('#myidentity-button-container');
// This function displays the Identify Smart Buttons on your page.
</script>
</body>
Implement the onApprove function, which is called when your buyer/user is successfully identified.
myidentity.Buttons({
onApprove: function(data) {
// The data object represents a successfull identification sessions.
// It does not contain any specific user details
// The data object is sent to your own login api which uses the
fetch('/your-own-login-url', {
// other `fetch` function call configuration attributes, like method, headers, etc
body: JSON.stringify(data)
})
.then((response) => {
// Process your own successul login response
})
.catch((err) => {
// Process your failed successul login response
})
}
}).render('#myidentity-button-container');