Skip to content

Commit

Permalink
update cookbook.md for PKCE fields
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer committed Oct 2, 2023
1 parent 34d6873 commit ae2916d
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions content/cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,15 @@ CREATE TABLE oauth_access_tokens (
);

CREATE TABLE oauth_authorization_codes (
authorization_code VARCHAR(40) NOT NULL,
client_id VARCHAR(80) NOT NULL,
user_id VARCHAR(80),
redirect_uri VARCHAR(2000),
expires TIMESTAMP NOT NULL,
scope VARCHAR(4000),
id_token VARCHAR(1000),
authorization_code VARCHAR(40) NOT NULL,
client_id VARCHAR(80) NOT NULL,
user_id VARCHAR(80),
redirect_uri VARCHAR(2000),
expires TIMESTAMP NOT NULL,
scope VARCHAR(4000),
id_token VARCHAR(1000),
code_challenge VARCHAR(1000),
code_challenge_method VARCHAR(20),
PRIMARY KEY (authorization_code)
);

Expand Down

0 comments on commit ae2916d

Please sign in to comment.