-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapi_advanced_authentication.go
170 lines (115 loc) · 4.96 KB
/
api_advanced_authentication.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/*
* api.video
*
* api.video is an API that encodes on the go to facilitate immediate playback, enhancing viewer streaming experiences across multiple devices and platforms. You can stream live or on-demand online videos within minutes.
*
* API version: 1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package apivideosdk
import (
"context"
"net/http"
"net/url"
)
// Linger please
var (
_ context.Context
)
type AdvancedAuthenticationServiceI interface {
/*
* Authenticate Get Bearer Token
* @return AdvancedAuthenticationApiAuthenticateRequest
*/
Authenticate(authenticatePayload AuthenticatePayload) (*AccessToken, error)
/*
* Authenticate Get Bearer Token
* @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return AdvancedAuthenticationApiAuthenticateRequest
*/
AuthenticateWithContext(ctx context.Context, authenticatePayload AuthenticatePayload) (*AccessToken, error)
/*
* Refresh Refresh Bearer Token
* @return AdvancedAuthenticationApiRefreshRequest
*/
Refresh(refreshTokenPayload RefreshTokenPayload) (*AccessToken, error)
/*
* Refresh Refresh Bearer Token
* @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return AdvancedAuthenticationApiRefreshRequest
*/
RefreshWithContext(ctx context.Context, refreshTokenPayload RefreshTokenPayload) (*AccessToken, error)
}
// AdvancedAuthenticationService communicating with the AdvancedAuthentication
// endpoints of the api.video API
type AdvancedAuthenticationService struct {
client *Client
}
/*
* Authenticate Get Bearer Token
* Returns a bearer token that can be used to authenticate other endpoint.
You can find the tutorial on using the disposable bearer token [here](https://docs.api.video/reference/disposable-bearer-token-authentication).
* @return AdvancedAuthenticationApiAuthenticateRequest
*/
func (s *AdvancedAuthenticationService) Authenticate(authenticatePayload AuthenticatePayload) (*AccessToken, error) {
return s.AuthenticateWithContext(context.Background(), authenticatePayload)
}
/*
* Authenticate Get Bearer Token
* Returns a bearer token that can be used to authenticate other endpoint.
You can find the tutorial on using the disposable bearer token [here](https://docs.api.video/reference/disposable-bearer-token-authentication).
* @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return AdvancedAuthenticationApiAuthenticateRequest
*/
func (s *AdvancedAuthenticationService) AuthenticateWithContext(ctx context.Context, authenticatePayload AuthenticatePayload) (*AccessToken, error) {
var localVarPostBody interface{}
localVarPath := "/auth/api-key"
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
// body params
localVarPostBody = authenticatePayload
req, err := s.client.prepareRequest(ctx, http.MethodPost, localVarPath, localVarPostBody, localVarHeaderParams, localVarQueryParams)
if err != nil {
return nil, err
}
res := new(AccessToken)
_, err = s.client.do(req, res)
if err != nil {
return nil, err
}
return res, nil
}
/*
* Refresh Refresh Bearer Token
* Accepts the old bearer token and returns a new bearer token that can be used to authenticate other endpoint.
You can find the tutorial on using the disposable bearer token [here](https://docs.api.video/reference/disposable-bearer-token-authentication).
* @return AdvancedAuthenticationApiRefreshRequest
*/
func (s *AdvancedAuthenticationService) Refresh(refreshTokenPayload RefreshTokenPayload) (*AccessToken, error) {
return s.RefreshWithContext(context.Background(), refreshTokenPayload)
}
/*
* Refresh Refresh Bearer Token
* Accepts the old bearer token and returns a new bearer token that can be used to authenticate other endpoint.
You can find the tutorial on using the disposable bearer token [here](https://docs.api.video/reference/disposable-bearer-token-authentication).
* @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
* @return AdvancedAuthenticationApiRefreshRequest
*/
func (s *AdvancedAuthenticationService) RefreshWithContext(ctx context.Context, refreshTokenPayload RefreshTokenPayload) (*AccessToken, error) {
var localVarPostBody interface{}
localVarPath := "/auth/refresh"
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
// body params
localVarPostBody = refreshTokenPayload
req, err := s.client.prepareRequest(ctx, http.MethodPost, localVarPath, localVarPostBody, localVarHeaderParams, localVarQueryParams)
if err != nil {
return nil, err
}
res := new(AccessToken)
_, err = s.client.do(req, res)
if err != nil {
return nil, err
}
return res, nil
}