Authing DocsDocuments
Concept
workflow
Guides
Development Integration
Application integration
Concept
workflow
Guides
Development Integration
Application integration
Old Version
workflow
  • An overview of identity automation
  • Quick start

  • Write Workflow

  • Execute Workflow

  • Operate internal resources of Authoring
  • Using application connectors

    • HTTP Request
    • PostgreSQL
    • MySQL
    • MongoDB
    • Microsoft SQL
    • Feishu
  • Process control nodes

  • Data processing nodes

  • Workflow customization capability

  • Using templates

  1. workflow
  2. /
  3. Using application connectors

  4. /
  5. PostgreSQL

¶ PostgreSQL

The Postgres application allows you to operate the Postgres database in Authing identity automation, including executing queries, inserting data, updating data, and more.

¶ Preparation work

If you have not yet created a PostgreSQL database, please create it first. 2. Automatically configure your Postgres database key in Authoring identity.

¶ Supported operations

  1. Execute query
  2. Insert data
  3. Update data

¶ Basic examples

Firstly, in your Postgres database, create a test table. Here, we create a 'users' user table with three fields:' id ',' name ', and' email ', and insert several test data:

CREATE SEQUENCE IF NOT EXISTS users_id_seq;

-- Table Definition
CREATE TABLE "public"."users" (
    "id" int4 NOT NULL DEFAULT nextval('users_id_seq'::regclass),
    "name" varchar(64) NOT NULL,
    "email" varchar(64) NOT NULL,
    PRIMARY KEY ("id")
);

INSERT INTO "public"."users" ("id", "name", "email") VALUES
(1, 'Bob', 'bob@example.com'), 
(2, 'Lucy', 'lucy@example.com');

Set the Postgres node to execute queries and write in query statements select * from users limit 10:

Execution node:

Prev: HTTP Request Next: MySQL
  • Preparation work
  • Supported operations
  • Basic examples

User identity management

Integrated third-party login
Mobile phone number flash check (opens new window)
Universal login form component
Custom authentication process

Enterprise internal management

Single Sign On
Multi-factor Authentication
Authority Management

Developers

Development Document
Framework Integration
Blog (opens new window)
GitHub (opens new window)
Community User Center (opens new window)

Company

400 888 2106
sales@authing.cn
16 / F, Block B, NORTH STAR CENTURY CENTER, Beijing(Total)
room 406, 4th floor, zone B, building 1, No. 200, Tianfu Fifth Street, Chengdu(branch)

Beijing ICP No.19051205-1

© Beijing Steamory Technology Co.