8000 GitHub - lucklyboyhx/spring-security-oauth2
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

lucklyboyhx/spring-security-oauth2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

spring-security-oauth2

DROP TABLE IF EXISTS oauth_client_details; CREATE TABLE oauth_client_details ( client_id varchar(255) NOT NULL, resource_ids varchar(255) DEFAULT NULL, client_secret varchar(255) DEFAULT NULL, scope varchar(255) DEFAULT NULL, authorized_grant_types varchar(255) DEFAULT NULL, web_server_redirect_uri varchar(255) DEFAULT NULL, authorities varchar(255) DEFAULT NULL, access_token_validity int(11) DEFAULT NULL, refresh_token_validity int(11) DEFAULT NULL, additional_information varchar(4096) DEFAULT NULL, autoapprove varchar(255) DEFAULT NULL, PRIMARY KEY (client_id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;


-- Records of oauth_client_details


INSERT INTO pos9_center.oauth_client_details (client_id, resource_ids, client_secret, scope, authorized_grant_types, web_server_redirect_uri, authorities, access_token_validity, refresh_token_validity, additional_information, autoapprove) VALUES ('appclient', NULL, 'nhsoft123', 'app', 'password,authorization_code,refresh_token', NULL, NULL, '86400', '86400', NULL, '1');

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0