mirror of
https://github.com/gotify/server.git
synced 2026-05-06 21:42:07 +08:00
Update docs
This commit is contained in:
committed by
Jannis Mattheis
parent
70e1fd1863
commit
0fb584d7f7
@@ -54,7 +54,7 @@ type ApplicationParams struct {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: body
|
||||
// in: body
|
||||
@@ -105,7 +105,7 @@ func (a *ApplicationAPI) CreateApplication(ctx *gin.Context) {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -148,7 +148,7 @@ func (a *ApplicationAPI) GetApplications(ctx *gin.Context) {
|
||||
// required: true
|
||||
// type: integer
|
||||
// format: int64
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -199,7 +199,7 @@ func (a *ApplicationAPI) DeleteApplication(ctx *gin.Context) {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: body
|
||||
// in: body
|
||||
@@ -266,7 +266,7 @@ func (a *ApplicationAPI) UpdateApplication(ctx *gin.Context) {
|
||||
// consumes:
|
||||
// - multipart/form-data
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: file
|
||||
// in: formData
|
||||
|
||||
@@ -33,7 +33,7 @@ type ClientAPI struct {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: body
|
||||
// in: body
|
||||
@@ -98,7 +98,7 @@ func (a *ClientAPI) UpdateClient(ctx *gin.Context) {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: body
|
||||
// in: body
|
||||
@@ -143,7 +143,7 @@ func (a *ClientAPI) CreateClient(ctx *gin.Context) {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -183,7 +183,7 @@ func (a *ClientAPI) GetClients(ctx *gin.Context) {
|
||||
// required: true
|
||||
// type: integer
|
||||
// format: int64
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
|
||||
@@ -52,7 +52,7 @@ type pagingParams struct {
|
||||
//
|
||||
// ---
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: limit
|
||||
// in: query
|
||||
@@ -133,7 +133,7 @@ func withPaging(ctx *gin.Context, f func(pagingParams *pagingParams)) {
|
||||
//
|
||||
// ---
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: id
|
||||
// in: path
|
||||
@@ -205,7 +205,7 @@ func (a *MessageAPI) GetMessagesWithApplication(ctx *gin.Context) {
|
||||
//
|
||||
// ---
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -229,7 +229,7 @@ func (a *MessageAPI) DeleteMessages(ctx *gin.Context) {
|
||||
//
|
||||
// ---
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: id
|
||||
// in: path
|
||||
@@ -277,7 +277,7 @@ func (a *MessageAPI) DeleteMessageWithApplication(ctx *gin.Context) {
|
||||
//
|
||||
// ---
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: id
|
||||
// in: path
|
||||
@@ -335,7 +335,7 @@ func (a *MessageAPI) DeleteMessage(ctx *gin.Context) {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [appTokenHeader: [], appTokenQuery: []]
|
||||
// security: [appTokenAuthorizationHeader: [], appTokenHeader: [], appTokenQuery: []]
|
||||
// parameters:
|
||||
// - name: body
|
||||
// in: body
|
||||
|
||||
@@ -36,7 +36,7 @@ type PluginAPI struct {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -101,7 +101,7 @@ func (c *PluginAPI) GetPlugins(ctx *gin.Context) {
|
||||
// required: true
|
||||
// type: integer
|
||||
// format: int64
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -159,7 +159,7 @@ func (c *PluginAPI) EnablePlugin(ctx *gin.Context) {
|
||||
// required: true
|
||||
// type: integer
|
||||
// format: int64
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -217,7 +217,7 @@ func (c *PluginAPI) DisablePlugin(ctx *gin.Context) {
|
||||
// required: true
|
||||
// type: integer
|
||||
// format: int64
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -273,7 +273,7 @@ func (c *PluginAPI) GetDisplay(ctx *gin.Context) {
|
||||
// required: true
|
||||
// type: integer
|
||||
// format: int64
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -340,7 +340,7 @@ func (c *PluginAPI) GetConfig(ctx *gin.Context) {
|
||||
// required: true
|
||||
// type: integer
|
||||
// format: int64
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
|
||||
@@ -105,7 +105,7 @@ func (a *API) register(client *client) {
|
||||
// ---
|
||||
// schema: ws, wss
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
|
||||
14
api/user.go
14
api/user.go
@@ -71,7 +71,7 @@ type UserAPI struct {
|
||||
//
|
||||
// ---
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -107,7 +107,7 @@ func (a *UserAPI) GetUsers(ctx *gin.Context) {
|
||||
//
|
||||
// ---
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// responses:
|
||||
// 200:
|
||||
// description: Ok
|
||||
@@ -140,7 +140,7 @@ func (a *UserAPI) GetCurrentUser(ctx *gin.Context) {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: body
|
||||
// in: body
|
||||
@@ -226,7 +226,7 @@ func (a *UserAPI) CreateUser(ctx *gin.Context) {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: id
|
||||
// in: path
|
||||
@@ -276,7 +276,7 @@ func (a *UserAPI) GetUserByID(ctx *gin.Context) {
|
||||
//
|
||||
// ---
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: id
|
||||
// in: path
|
||||
@@ -337,7 +337,7 @@ func (a *UserAPI) DeleteUserByID(ctx *gin.Context) {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: body
|
||||
// in: body
|
||||
@@ -380,7 +380,7 @@ func (a *UserAPI) ChangePassword(ctx *gin.Context) {
|
||||
// ---
|
||||
// consumes: [application/json]
|
||||
// produces: [application/json]
|
||||
// security: [clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// security: [clientTokenAuthorizationHeader: [], clientTokenHeader: [], clientTokenQuery: [], basicAuth: []]
|
||||
// parameters:
|
||||
// - name: id
|
||||
// in: path
|
||||
|
||||
@@ -2,10 +2,11 @@ package auth
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"strings"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/gotify/server/v2/auth/password"
|
||||
"github.com/gotify/server/v2/model"
|
||||
"strings"
|
||||
)
|
||||
|
||||
const (
|
||||
|
||||
@@ -7,7 +7,8 @@
|
||||
// __clientToken__: a client is something that receives message and manages stuff like creating new tokens or delete messages. (f.ex this token should be used for an android app)
|
||||
// __appToken__: an application is something that sends messages (f.ex. this token should be used for a shell script)
|
||||
//
|
||||
// The token can be either transmitted through a header named `X-Gotify-Key` or a query parameter named `token`.
|
||||
// The token can be transmitted in a header named `X-Gotify-Key`, in a query parameter named `token` or
|
||||
// through a header named `Authorization` with the value prefixed with `Bearer` (Ex. `Bearer randomtoken`).
|
||||
// There is also the possibility to authenticate through basic auth, this should only be used for creating a clientToken.
|
||||
//
|
||||
// \---
|
||||
@@ -16,7 +17,7 @@
|
||||
//
|
||||
// Schemes: http, https
|
||||
// Host: localhost
|
||||
// Version: 2.0.1
|
||||
// Version: 2.0.2
|
||||
// License: MIT https://github.com/gotify/server/blob/master/LICENSE
|
||||
//
|
||||
// Consumes:
|
||||
@@ -42,6 +43,18 @@
|
||||
// type: apiKey
|
||||
// name: X-Gotify-Key
|
||||
// in: header
|
||||
// appTokenAuthorizationHeader:
|
||||
// type: apiKey
|
||||
// name: Authorization
|
||||
// in: header
|
||||
// description: >-
|
||||
// Enter an application token with the `Bearer` prefix, e.g. `Bearer Axxxxxxxxxx`.
|
||||
// clientTokenAuthorizationHeader:
|
||||
// type: apiKey
|
||||
// name: Authorization
|
||||
// in: header
|
||||
// description: >-
|
||||
// Enter a client token with the `Bearer` prefix, e.g. `Bearer Cxxxxxxxxxx`.
|
||||
// basicAuth:
|
||||
// type: basic
|
||||
//
|
||||
|
||||
103
docs/spec.json
103
docs/spec.json
@@ -11,19 +11,22 @@
|
||||
],
|
||||
"swagger": "2.0",
|
||||
"info": {
|
||||
"description": "This is the documentation of the Gotify REST-API.\n\n# Authentication\nIn Gotify there are two token types:\n__clientToken__: a client is something that receives message and manages stuff like creating new tokens or delete messages. (f.ex this token should be used for an android app)\n__appToken__: an application is something that sends messages (f.ex. this token should be used for a shell script)\n\nThe token can be either transmitted through a header named `X-Gotify-Key` or a query parameter named `token`.\nThere is also the possibility to authenticate through basic auth, this should only be used for creating a clientToken.\n\n\\---\n\nFound a bug or have some questions? [Create an issue on GitHub](https://github.com/gotify/server/issues)",
|
||||
"description": "This is the documentation of the Gotify REST-API.\n\n# Authentication\nIn Gotify there are two token types:\n__clientToken__: a client is something that receives message and manages stuff like creating new tokens or delete messages. (f.ex this token should be used for an android app)\n__appToken__: an application is something that sends messages (f.ex. this token should be used for a shell script)\n\nThe token can be transmitted in a header named `X-Gotify-Key`, in a query parameter named `token` or\nthrough a header named `Authorization` with the value prefixed with `Bearer` (Ex. `Bearer randomtoken`).\nThere is also the possibility to authenticate through basic auth, this should only be used for creating a clientToken.\n\n\\---\n\nFound a bug or have some questions? [Create an issue on GitHub](https://github.com/gotify/server/issues)",
|
||||
"title": "Gotify REST-API.",
|
||||
"license": {
|
||||
"name": "MIT",
|
||||
"url": "https://github.com/gotify/server/blob/master/LICENSE"
|
||||
},
|
||||
"version": "2.0.1"
|
||||
"version": "2.0.2"
|
||||
},
|
||||
"host": "localhost",
|
||||
"paths": {
|
||||
"/application": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -71,6 +74,9 @@
|
||||
},
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -134,6 +140,9 @@
|
||||
"/application/{id}": {
|
||||
"put": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -209,6 +218,9 @@
|
||||
},
|
||||
"delete": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -274,6 +286,9 @@
|
||||
"/application/{id}/image": {
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -355,6 +370,9 @@
|
||||
"/application/{id}/message": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -435,6 +453,9 @@
|
||||
},
|
||||
"delete": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -497,6 +518,9 @@
|
||||
"/client": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -544,6 +568,9 @@
|
||||
},
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -607,6 +634,9 @@
|
||||
"/client/{id}": {
|
||||
"put": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -682,6 +712,9 @@
|
||||
},
|
||||
"delete": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -747,6 +780,9 @@
|
||||
"/current/user": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -790,6 +826,9 @@
|
||||
"/current/user/password": {
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -876,6 +915,9 @@
|
||||
"/message": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -942,6 +984,9 @@
|
||||
},
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"appTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"appTokenHeader": []
|
||||
},
|
||||
@@ -1001,6 +1046,9 @@
|
||||
},
|
||||
"delete": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1041,6 +1089,9 @@
|
||||
"/message/{id}": {
|
||||
"delete": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1103,6 +1154,9 @@
|
||||
"/plugin": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1164,6 +1218,9 @@
|
||||
"/plugin/{id}/config": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1237,6 +1294,9 @@
|
||||
},
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1308,6 +1368,9 @@
|
||||
"/plugin/{id}/disable": {
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1373,6 +1436,9 @@
|
||||
"/plugin/{id}/display": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1441,6 +1507,9 @@
|
||||
"/plugin/{id}/enable": {
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1506,6 +1575,9 @@
|
||||
"/stream": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1561,6 +1633,9 @@
|
||||
"/user": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1605,6 +1680,9 @@
|
||||
},
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1669,6 +1747,9 @@
|
||||
"/user/{id}": {
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1735,6 +1816,9 @@
|
||||
},
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -1810,6 +1894,9 @@
|
||||
},
|
||||
"delete": {
|
||||
"security": [
|
||||
{
|
||||
"clientTokenAuthorizationHeader": []
|
||||
},
|
||||
{
|
||||
"clientTokenHeader": []
|
||||
},
|
||||
@@ -2435,6 +2522,12 @@
|
||||
}
|
||||
},
|
||||
"securityDefinitions": {
|
||||
"appTokenAuthorizationHeader": {
|
||||
"description": "Enter an application token with the `Bearer` prefix, e.g. `Bearer Axxxxxxxxxx`.",
|
||||
"type": "apiKey",
|
||||
"name": "Authorization",
|
||||
"in": "header"
|
||||
},
|
||||
"appTokenHeader": {
|
||||
"type": "apiKey",
|
||||
"name": "X-Gotify-Key",
|
||||
@@ -2448,6 +2541,12 @@
|
||||
"basicAuth": {
|
||||
"type": "basic"
|
||||
},
|
||||
"clientTokenAuthorizationHeader": {
|
||||
"description": "Enter a client token with the `Bearer` prefix, e.g. `Bearer Cxxxxxxxxxx`.",
|
||||
"type": "apiKey",
|
||||
"name": "Authorization",
|
||||
"in": "header"
|
||||
},
|
||||
"clientTokenHeader": {
|
||||
"type": "apiKey",
|
||||
"name": "X-Gotify-Key",
|
||||
|
||||
Reference in New Issue
Block a user