Created
June 27, 2020 21:46
-
-
Save JordanSchuetz/1ef2f24161355332c2250f349da811b5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%RAML 1.0 SecurityScheme | |
type: Basic Authentication | |
describedBy: | |
headers: | |
client_id: | |
type: string | |
client_secret: | |
type: string | |
responses: | |
401: | |
description: Unauthorized or invalid client application credentials | |
500: | |
description: Bad response from authorization server, or WSDL SOAP Fault error |
Hi Lucas, this is the default code for the Basic Auth header in API Manager.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@JordanSchuetz
using
type: Basic Authorization
is forcing header like this 👉authorization: Basic YXNkOmFzZA==
and an error on the mocking service.Using
type: Pass Through
just send headers as expected.This example should work with Basic Auth header?