gitextract_7i56fx55/ ├── LICENSE ├── README.md ├── authorization/ │ ├── .gitignore │ ├── authorization_code/ │ │ ├── README.md │ │ ├── app.js │ │ ├── package.json │ │ └── public/ │ │ └── index.html │ ├── authorization_code_pkce/ │ │ ├── README.md │ │ ├── package.json │ │ └── public/ │ │ ├── app.js │ │ ├── index.html │ │ └── style.css │ ├── catalog-info.yaml │ ├── client_credentials/ │ │ ├── README.md │ │ └── app.js │ └── implicit_grant/ │ ├── README.md │ ├── app.js │ ├── package.json │ └── public/ │ └── index.html ├── catalog-info.yaml └── get_user_profile/ ├── .gitignore ├── README.md ├── index.html ├── package.json ├── src/ │ ├── authCodeWithPkce.ts │ ├── script.ts │ └── types.d.ts └── tsconfig.json