roundupapp / vue-plaid-link

Easy to use Vue component for Plaid Link
MIT License
31 stars 7 forks source link

American banks #26

Open leostereo opened 3 years ago

leostereo commented 3 years ago

Hi guys, im trying to integrate plaid into my vue project for American users. After install the module and set the link_token , I noticed that there are not american banks listed to sign up. I tryed passing the country codes array doing:

<template>
  <section>
    <plaid-link
      env="sandbox"
      token="link-sandbox-1c47dc86-6a67-4503-aae5-123864a0de5c"
      :countryCodes="country"
      clientName="Test App"
      product="transactions"
      v-bind="{ onSuccess }"
    >
      Open Plaid Link
    </plaid-link>
  </section>
</template>

<script>
import PlaidLink from "vue-plaid-link";

export default {
  name: 'plaid',
  components: { PlaidLink },
  data() {
    return {
      country: ['US','CA']
    };
  },
  methods: {
    onSuccess(token) {
      console.log(token);
    },
  },
}
</script>

How can I set the link initiator to show american banks ? Regards. Leandro.

johndpope commented 2 years ago

see here https://github.com/plaid/quickstart

bfine9618 commented 2 years ago

Apologies. Country codes are not being passed to plaid correctly. we will have a PR for it next week.