Last active
September 2, 2015 00:58
-
-
Save pbernasconi/471382448c9caa4d21de to your computer and use it in GitHub Desktop.
Plaid link w/ Intuit enabled
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Custom | |
| ------ | |
| <script src="https://cdn.plaid.com/link/stable/link-initialize.js"></script> | |
| <script> | |
| var linkHandler = Plaid.create({ | |
| env: 'tartan', | |
| clientName: 'Client Name', | |
| key: 'test_key', | |
| product: 'auth', | |
| longTail: true, | |
| onLoad: function() {}, | |
| onSuccess: function(public_token) {}, | |
| onExit: function() {}, | |
| }); | |
| </script> | |
| ---- | |
| Simple | |
| ---- | |
| <form id="some-id" method="GET" action="?"></form> | |
| <script | |
| src="https://cdn.plaid.com/link/stable/link-initialize.js" | |
| data-client-name="Client Name" | |
| data-form-id="some-id" | |
| data-key="test_key" | |
| data-product="auth" | |
| data-long-tail="true" | |
| data-env="tartan"> | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment