Skip to content

Instantly share code, notes, and snippets.

View akashbajwa's full-sized avatar
🏠
Working from home

AKASH BAJWA akashbajwa

🏠
Working from home
  • Personal
  • Lahore Punjab Pakistan
View GitHub Profile

Keybase proof

I hereby claim:

  • I am akashbajwa on github.
  • I am akashbajwa (https://keybase.io/akashbajwa) on keybase.
  • I have a public key ASAOTDMKk_p3tD52oqendDX8ZbCb9RV547QrcBDGOFC31wo

To claim this, I am signing this object:

require('dotenv').config();
const express = require("express");
const plaid = require("plaid")
const app = express();
const PORT = 4100;
// Initialize the Plaid client
const client = new plaid.Client({
clientID: process.env.PLAID_CLIENT_ID,
secret: process.env.PLAID_SECRET,
# Get your Plaid API keys from the dashboard: https://dashboard.plaid.com/account/keys
PLAID_CLIENT_ID= {{yourPlaidClientID}}
PLAID_SECRET= {{yourPlaidSecretID}}
# Use 'sandbox' to test with fake credentials in Plaid's Sandbox environment
# Use 'development' to test with real credentials while developing
# Use 'production' to go live with real users
PLAID_ENV=sandbox
# PLAID_PRODUCTS is a comma-separated list of products to use when
# initializing Link, e.g. PLAID_PRODUCTS=auth,transactions.
# see https://plaid.com/docs/api/tokens/#link-token-create-request-products for a complete list.