Issue 'Authorization: Bearer ' in a Swagger openAPI AnnotationsAuthorization header override in Swagger UI with NginxCustomize swagger annotation in spring mvcSwashbuckle Bearer AuthorizationEnable bearer token in Swashbuckle (Swagger document)How to properly use Bearer tokens?Creating Request body using get request in Open API 3.0 (Swagger)How to specify credentials for Bearer auth in Swagger-NetSetting authentication for swagger v3Springfox swagger model substitute based on custom annotation on string fieldGenerating an API Client with Swagger OpenAPI 3 with OAuth2 Client Credentials
How does it work when somebody invests in my business?
Why "be dealt cards" rather than "be dealing cards"?
How can I replace every global instance of "x[2]" with "x_2"
Confused about a passage in Harry Potter y la piedra filosofal
The baby cries all morning
What is the opposite of 'gravitas'?
apt-get update is failing in debian
What is difference between behavior and behaviour
Should my PhD thesis be submitted under my legal name?
The plural of 'stomach"
Bash method for viewing beginning and end of file
Is there a good way to store credentials outside of a password manager?
Will it be accepted, if there is no ''Main Character" stereotype?
Why is delta-v is the most useful quantity for planning space travel?
Modify casing of marked letters
Ways to speed up user implemented RK4
What is the intuitive meaning of having a linear relationship between the logs of two variables?
Is there any easy technique written in Bhagavad GITA to control lust?
What is the term when two people sing in harmony, but they aren't singing the same notes?
Can a monster with multiattack use this ability if they are missing a limb?
Student evaluations of teaching assistants
Failed to fetch jessie backports repository
How could Frankenstein get the parts for his _second_ creature?
I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?
Issue 'Authorization: Bearer ' in a Swagger openAPI Annotations
Authorization header override in Swagger UI with NginxCustomize swagger annotation in spring mvcSwashbuckle Bearer AuthorizationEnable bearer token in Swashbuckle (Swagger document)How to properly use Bearer tokens?Creating Request body using get request in Open API 3.0 (Swagger)How to specify credentials for Bearer auth in Swagger-NetSetting authentication for swagger v3Springfox swagger model substitute based on custom annotation on string fieldGenerating an API Client with Swagger OpenAPI 3 with OAuth2 Client Credentials
I use these packages (installed via composer)
"swagger-api/swagger-ui": "^3.0",
"zircote/swagger-php": "~2.0|3.*"
In my def controller I have these annotations
/**
* @OAInfo(title="My API", version="0.1")
* @OASchemes(format="http")
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="Authorization",
* type="http",
* scheme="Bearer",
* bearerFormat="JWT",
* ),
* @OATag(
* name="Auth",
* description="Auth endpoints",
* )
* @OATag(
* name="Users",
* description="Users endpoints",
* )
*/
class Controller extends BaseController
Then I have method
/**
*
* @OAGet(
* path="/users",
* operationId="getListOfUsers",
* tags="Users",
* description="Get list of users",
* security="bearerAuth":,
* @OAParameter(
* name="Authorization",
* in="header",
* required=true,
* description="Bearer access-token",
* @OASchema(
* type="bearerAuth"
* )
* ),
* @OAResponse(
* response=200,
* description="Get list of users.",
* @OAJsonContent(type="object",
* @OAProperty(property="message", type="string"),
* @OAProperty(property="data", type="array",
* @OAItems(type="object",
* @OAProperty(property="id", type="integer"),
* @OAProperty(property="name", type="string"),
* @OAProperty(property="email", type="string"),
* ),
* ),
* ),
* ),
* @OAResponse(response=401, description="Unauthorized"),
* @OAResponse(response=404, description="Not Found"),
* )
*
* @return JsonResponse
*/
public function users()
So, when I try to test this route via swagger ui, I am getting error
401, "message": "Unauthenticated."
When I checked header (Firefox), I have not seen
Authorization: Bearer access-token
but I have my token in
Cookie: XSRF-TOKEN=eyJpdiI6Ik5COUV5Y1ltRTM4eXNsRlpLY2ptTGc9PSIsInZhbHVlIjoiNDFCbG95c1RHSHRFT0IyWWZ4aWFRQVJ6RHhTS1A4SFJiQXp2amlQc3RCUFRUWWs5R3RQQ0ZlakdFNnlvRm50MSIsIm1hYyI6ImM...
Swagger UI does not send header properly. What is wrong in annotations? Thanks
php swagger openapi swagger-php
add a comment |
I use these packages (installed via composer)
"swagger-api/swagger-ui": "^3.0",
"zircote/swagger-php": "~2.0|3.*"
In my def controller I have these annotations
/**
* @OAInfo(title="My API", version="0.1")
* @OASchemes(format="http")
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="Authorization",
* type="http",
* scheme="Bearer",
* bearerFormat="JWT",
* ),
* @OATag(
* name="Auth",
* description="Auth endpoints",
* )
* @OATag(
* name="Users",
* description="Users endpoints",
* )
*/
class Controller extends BaseController
Then I have method
/**
*
* @OAGet(
* path="/users",
* operationId="getListOfUsers",
* tags="Users",
* description="Get list of users",
* security="bearerAuth":,
* @OAParameter(
* name="Authorization",
* in="header",
* required=true,
* description="Bearer access-token",
* @OASchema(
* type="bearerAuth"
* )
* ),
* @OAResponse(
* response=200,
* description="Get list of users.",
* @OAJsonContent(type="object",
* @OAProperty(property="message", type="string"),
* @OAProperty(property="data", type="array",
* @OAItems(type="object",
* @OAProperty(property="id", type="integer"),
* @OAProperty(property="name", type="string"),
* @OAProperty(property="email", type="string"),
* ),
* ),
* ),
* ),
* @OAResponse(response=401, description="Unauthorized"),
* @OAResponse(response=404, description="Not Found"),
* )
*
* @return JsonResponse
*/
public function users()
So, when I try to test this route via swagger ui, I am getting error
401, "message": "Unauthenticated."
When I checked header (Firefox), I have not seen
Authorization: Bearer access-token
but I have my token in
Cookie: XSRF-TOKEN=eyJpdiI6Ik5COUV5Y1ltRTM4eXNsRlpLY2ptTGc9PSIsInZhbHVlIjoiNDFCbG95c1RHSHRFT0IyWWZ4aWFRQVJ6RHhTS1A4SFJiQXp2amlQc3RCUFRUWWs5R3RQQ0ZlakdFNnlvRm50MSIsIm1hYyI6ImM...
Swagger UI does not send header properly. What is wrong in annotations? Thanks
php swagger openapi swagger-php
add a comment |
I use these packages (installed via composer)
"swagger-api/swagger-ui": "^3.0",
"zircote/swagger-php": "~2.0|3.*"
In my def controller I have these annotations
/**
* @OAInfo(title="My API", version="0.1")
* @OASchemes(format="http")
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="Authorization",
* type="http",
* scheme="Bearer",
* bearerFormat="JWT",
* ),
* @OATag(
* name="Auth",
* description="Auth endpoints",
* )
* @OATag(
* name="Users",
* description="Users endpoints",
* )
*/
class Controller extends BaseController
Then I have method
/**
*
* @OAGet(
* path="/users",
* operationId="getListOfUsers",
* tags="Users",
* description="Get list of users",
* security="bearerAuth":,
* @OAParameter(
* name="Authorization",
* in="header",
* required=true,
* description="Bearer access-token",
* @OASchema(
* type="bearerAuth"
* )
* ),
* @OAResponse(
* response=200,
* description="Get list of users.",
* @OAJsonContent(type="object",
* @OAProperty(property="message", type="string"),
* @OAProperty(property="data", type="array",
* @OAItems(type="object",
* @OAProperty(property="id", type="integer"),
* @OAProperty(property="name", type="string"),
* @OAProperty(property="email", type="string"),
* ),
* ),
* ),
* ),
* @OAResponse(response=401, description="Unauthorized"),
* @OAResponse(response=404, description="Not Found"),
* )
*
* @return JsonResponse
*/
public function users()
So, when I try to test this route via swagger ui, I am getting error
401, "message": "Unauthenticated."
When I checked header (Firefox), I have not seen
Authorization: Bearer access-token
but I have my token in
Cookie: XSRF-TOKEN=eyJpdiI6Ik5COUV5Y1ltRTM4eXNsRlpLY2ptTGc9PSIsInZhbHVlIjoiNDFCbG95c1RHSHRFT0IyWWZ4aWFRQVJ6RHhTS1A4SFJiQXp2amlQc3RCUFRUWWs5R3RQQ0ZlakdFNnlvRm50MSIsIm1hYyI6ImM...
Swagger UI does not send header properly. What is wrong in annotations? Thanks
php swagger openapi swagger-php
I use these packages (installed via composer)
"swagger-api/swagger-ui": "^3.0",
"zircote/swagger-php": "~2.0|3.*"
In my def controller I have these annotations
/**
* @OAInfo(title="My API", version="0.1")
* @OASchemes(format="http")
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="Authorization",
* type="http",
* scheme="Bearer",
* bearerFormat="JWT",
* ),
* @OATag(
* name="Auth",
* description="Auth endpoints",
* )
* @OATag(
* name="Users",
* description="Users endpoints",
* )
*/
class Controller extends BaseController
Then I have method
/**
*
* @OAGet(
* path="/users",
* operationId="getListOfUsers",
* tags="Users",
* description="Get list of users",
* security="bearerAuth":,
* @OAParameter(
* name="Authorization",
* in="header",
* required=true,
* description="Bearer access-token",
* @OASchema(
* type="bearerAuth"
* )
* ),
* @OAResponse(
* response=200,
* description="Get list of users.",
* @OAJsonContent(type="object",
* @OAProperty(property="message", type="string"),
* @OAProperty(property="data", type="array",
* @OAItems(type="object",
* @OAProperty(property="id", type="integer"),
* @OAProperty(property="name", type="string"),
* @OAProperty(property="email", type="string"),
* ),
* ),
* ),
* ),
* @OAResponse(response=401, description="Unauthorized"),
* @OAResponse(response=404, description="Not Found"),
* )
*
* @return JsonResponse
*/
public function users()
So, when I try to test this route via swagger ui, I am getting error
401, "message": "Unauthenticated."
When I checked header (Firefox), I have not seen
Authorization: Bearer access-token
but I have my token in
Cookie: XSRF-TOKEN=eyJpdiI6Ik5COUV5Y1ltRTM4eXNsRlpLY2ptTGc9PSIsInZhbHVlIjoiNDFCbG95c1RHSHRFT0IyWWZ4aWFRQVJ6RHhTS1A4SFJiQXp2amlQc3RCUFRUWWs5R3RQQ0ZlakdFNnlvRm50MSIsIm1hYyI6ImM...
Swagger UI does not send header properly. What is wrong in annotations? Thanks
php swagger openapi swagger-php
php swagger openapi swagger-php
asked Mar 8 at 9:42
speziaspezia
635
635
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Authorization has nothing to do with XSRF-TOKEN.
I also had the same issue and solved it after several hours of googling. Here are the changes you might want to try:
Remove these lines:
* @OAParameter(
* name="Authorization",
* in="header",
* required=true,
* description="Bearer access-token",
* @OASchema(
* type="bearerAuth"
* )
* ),
And change this:
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="Authorization",
* type="http",
* scheme="Bearer",
* bearerFormat="JWT",
* ),
to
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="bearerAuth",
* type="http",
* scheme="bearer",
* bearerFormat="JWT",
* ),
Note that the "Bearer" and "bearer" are differed.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55060478%2fissue-authorization-bearer-token-in-a-swagger-openapi-annotations%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Authorization has nothing to do with XSRF-TOKEN.
I also had the same issue and solved it after several hours of googling. Here are the changes you might want to try:
Remove these lines:
* @OAParameter(
* name="Authorization",
* in="header",
* required=true,
* description="Bearer access-token",
* @OASchema(
* type="bearerAuth"
* )
* ),
And change this:
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="Authorization",
* type="http",
* scheme="Bearer",
* bearerFormat="JWT",
* ),
to
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="bearerAuth",
* type="http",
* scheme="bearer",
* bearerFormat="JWT",
* ),
Note that the "Bearer" and "bearer" are differed.
add a comment |
Authorization has nothing to do with XSRF-TOKEN.
I also had the same issue and solved it after several hours of googling. Here are the changes you might want to try:
Remove these lines:
* @OAParameter(
* name="Authorization",
* in="header",
* required=true,
* description="Bearer access-token",
* @OASchema(
* type="bearerAuth"
* )
* ),
And change this:
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="Authorization",
* type="http",
* scheme="Bearer",
* bearerFormat="JWT",
* ),
to
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="bearerAuth",
* type="http",
* scheme="bearer",
* bearerFormat="JWT",
* ),
Note that the "Bearer" and "bearer" are differed.
add a comment |
Authorization has nothing to do with XSRF-TOKEN.
I also had the same issue and solved it after several hours of googling. Here are the changes you might want to try:
Remove these lines:
* @OAParameter(
* name="Authorization",
* in="header",
* required=true,
* description="Bearer access-token",
* @OASchema(
* type="bearerAuth"
* )
* ),
And change this:
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="Authorization",
* type="http",
* scheme="Bearer",
* bearerFormat="JWT",
* ),
to
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="bearerAuth",
* type="http",
* scheme="bearer",
* bearerFormat="JWT",
* ),
Note that the "Bearer" and "bearer" are differed.
Authorization has nothing to do with XSRF-TOKEN.
I also had the same issue and solved it after several hours of googling. Here are the changes you might want to try:
Remove these lines:
* @OAParameter(
* name="Authorization",
* in="header",
* required=true,
* description="Bearer access-token",
* @OASchema(
* type="bearerAuth"
* )
* ),
And change this:
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="Authorization",
* type="http",
* scheme="Bearer",
* bearerFormat="JWT",
* ),
to
* @OASecurityScheme(
* securityScheme="bearerAuth",
* in="header",
* name="bearerAuth",
* type="http",
* scheme="bearer",
* bearerFormat="JWT",
* ),
Note that the "Bearer" and "bearer" are differed.
answered Mar 13 at 4:53
Nghia LeNghia Le
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55060478%2fissue-authorization-bearer-token-in-a-swagger-openapi-annotations%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown