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













0















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










share|improve this question


























    0















    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










    share|improve this question
























      0












      0








      0








      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










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 8 at 9:42









      speziaspezia

      635




      635






















          1 Answer
          1






          active

          oldest

          votes


















          0














          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.






          share|improve this answer






















            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
            );



            );













            draft saved

            draft discarded


















            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









            0














            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.






            share|improve this answer



























              0














              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.






              share|improve this answer

























                0












                0








                0







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 13 at 4:53









                Nghia LeNghia Le

                11




                11





























                    draft saved

                    draft discarded
















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

                    Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

                    2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived