12345678910111213141516171819202122232425 |
- <?php
- require_once "utils.php";
-
- function check_token()
- {
- if (!check_table_field("Authorization", "tokens", "token"))
- error(401, "Invalid token");
- }
-
- function status_confirm($id)
- {
- check_token();
- }
-
- function status_create()
- {
- check_token();
- $status = get_post("status");
- }
-
- function status_feed()
- {
- check_token();
- }
- ?>
|