fix(core): update

This commit is contained in:
Philipp Kunz 2022-02-19 13:30:46 +01:00
parent 80373424b4
commit 0eb51cf3c5

View File

@ -32,9 +32,9 @@ Use TypeScript for best inclass intellisense
// this example assumes toplevel await // this example assumes toplevel await
import * as tink from '@mojoio/tink'; import * as tink from '@mojoio/tink';
const tinkAccount = new TinkAccount('clientId', 'clientSecret'); const tinkAccount = new TinkAccount('<clientId>', '<clientSecret>');
const tinkUser = await tinkAccount.createTinkUser('YourOwnUniqueUserId'); const tinkUser = await tinkAccount.createTinkUser('<YourOwnUniqueUserId>');
const tinkLinkUrl = await tinkUser.getTinkLink(); const tinkLinkUrl = await tinkUser.getTinkLink('<marketCode like DE>');
// present the link to your user to connect their bank accounts to the tink platform. // present the link to your user to connect their bank accounts to the tink platform.