]> git.mxchange.org Git - friendica.git/blob - doc/database/db_auth_codes.md
Fix docs
[friendica.git] / doc / database / db_auth_codes.md
1 Table auth_codes
2 ================
3
4 OAuth2 authorisation register - currently implemented but unused
5
6 | Field         | Description | Type         | Null | Key | Default | Extra |
7 | ------------- | ----------- | ------------ | ---- | --- | ------- | ----- |
8 | id            |             | varchar(40)  | NO   | PRI | NULL    |       |
9 | client_id     |             | varchar(20)  | NO   |     |         |       |
10 | redirect_uri  |             | varchar(200) | NO   |     |         |       |
11 | expires       |             | int(11)      | NO   |     | 0       |       |
12 | scope         |             | varchar(250) | NO   |     |         |       |
13
14 Return to [database documentation](help/database)