CiscoSecurity / tr-05-oauth2-code-grant-example

Example implemention for using OAuth2 Authorization Code Grant Credentials

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tr-05-oauth2-code-grant-example

The project is an example of using CTR OAuth2 API.

Guide

Clone the repository

 git clone git@github.com:CiscoSecurity/tr-05-oauth2-code-grant-example.git

Install Python 3.8.5

Create virtualenv

python3 -m venv <your_venv_name>

Activate virtualenv:

  • Mac OS/Linux: source <your_venv_name>/bin/activate

  • Windows <your_venv_name>\Scripts\activate.bat

From current directory install dependencies

pip install -r requirements.txt

Create client to get CTR_CLIENT_ID and CTR_CLIENT_SECRET via Swagger UI

Send next payload by /iroh/oauth2-clients/clients (POST):

{
  "scopes": [
    "integration",
    "admin",
    "inspect"
  ],
  "description": "Your description",
  "redirects": [
    "http://localhost:5000/auth",
    "http://127.0.0.1:5000/auth"
  ],
  "availability": "org",
  "name": "Your name",
  "grants": [
    "auth-code"
  ]
}

Then you will receive response body, where id is CTR_CLIENT_ID and password is CTR_CLIENT_SECRET

Set up environment variables:

For Mac OS / Linux:

export CTR_CLIENT_ID=<you generated cliend id>
export CTR_CLIENT_SECRET=<you generated secret password>

For Windows:

set CTR_CLIENT_ID=<you generated cliend id>
set CTR_CLIENT_SECRET=<you generated secret password>

Run the next command:

flask run

To login via account from different region choose preferable region from drop-down

About

Example implemention for using OAuth2 Authorization Code Grant Credentials


Languages

Language:Python 73.0%Language:HTML 27.0%