You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expected: "ovh: some credentials information are missing: OVH_ENDPOINT,OVH_APPLICATION_KEY,OVH_APPLICATION_SECRET,OVH_CONSUMER_KEY",
103
+
expected: "ovh: new client: missing authentication information, you need to provide at least an application_key/application_secret or a client_id/client_secret",
expected: "ovh: new client: unknown endpoint '', consider checking 'Endpoints' list or using an URL",
231
203
},
232
204
{
233
205
desc: "oauth2: invalid api endpoint",
234
206
apiEndpoint: "foobar",
235
207
clientID: "B",
236
208
clientSecret: "C",
237
-
expected: "ovh: new OAuth2 client: unknown endpoint 'foobar', consider checking 'Endpoints' list or using an URL",
209
+
expected: "ovh: new client: unknown endpoint 'foobar', consider checking 'Endpoints' list or using an URL",
238
210
},
239
211
{
240
212
desc: "oauth2: missing client id",
241
213
apiEndpoint: "ovh-eu",
242
214
clientID: "",
243
215
clientSecret: "C",
244
-
expected: "ovh: credentials are missing",
216
+
expected: "ovh: new client: invalid oauth2 config, both client_id and client_secret must be given",
245
217
},
246
218
{
247
219
desc: "oauth2: missing client secret",
248
220
apiEndpoint: "ovh-eu",
249
221
clientID: "B",
250
222
clientSecret: "",
251
-
expected: "ovh: credentials are missing",
223
+
expected: "ovh: new client: invalid oauth2 config, both client_id and client_secret must be given",
252
224
},
253
225
{
254
226
desc: "missing credentials",
255
-
expected: "ovh: credentials are missing",
227
+
expected: "ovh: new client: missing authentication information, you need to provide at least an application_key/application_secret or a client_id/client_secret",
0 commit comments