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
{{ message }}
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
My RAML file content like below
securitySchemes:
oauth_2_0:
description: |
Dropbox supports OAuth 2.0 for authenticating all API requests.
type: OAuth 2.0
describedBy: headers:
Authorization:
description: |
Used to send a valid OAuth 2 access token. Do not use
with the "access_token" query string parameter.
type: string
I want to get details of headers described in securitiesSchemes, how can I ?
I'm trying to read like this but seems no more information on this securities object.
WebApi api = (WebApi) webModel.encodes();
Map<String, Object> root = new LinkedHashMap<>();
Library version used
0.5.0
Language library used with
Java
My RAML file content like below
securitySchemes:
oauth_2_0:
description: |
Dropbox supports OAuth 2.0 for authenticating all API requests.
type: OAuth 2.0
describedBy:
headers:
Authorization:
description: |
Used to send a valid OAuth 2 access token. Do not use
with the "access_token" query string parameter.
type: string
I want to get details of headers described in securitiesSchemes, how can I ?
I'm trying to read like this but seems no more information on this securities object.
WebApi api = (WebApi) webModel.encodes();
Map<String, Object> root = new LinkedHashMap<>();
The text was updated successfully, but these errors were encountered: