Flask OIDC user login is true but token is None Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!intermittent login problems with flask-loginBasic Flask OpenID Connect exampleEnsuring single-user per account with flask-loginHow to validate JWT token in cookie after login with OpenIDconnect in ASP.NET CoreWebapplication authentication with refresh token is redirecting back to google login pageProperly managing tokens in OIDC and OAuthHow to login user through all routes with flask?Getting the current users access token in a Keycloak SPI/Provider (at initial login)Flask-OIDC with keycloak - oidc_callback default callback not workingFlask - How to remember current user when using <embed>

Why not send Voyager 3 and 4 following up the paths taken by Voyager 1 and 2 to re-transmit signals of later as they fly away from Earth?

Did Mueller's report provide an evidentiary basis for the claim of Russian govt election interference via social media?

Special flights

Delete free apps from Play Store library

Sally's older brother

Question about this thing for timpani

What does 丫 mean? 丫是什么意思?

The Nth Gryphon Number

Was Kant an Intuitionist about mathematical objects?

Why datecode is SO IMPORTANT to chip manufacturers?

Is it dangerous to install hacking tools on my private linux machine?

Does the Mueller report show a conspiracy between Russia and the Trump Campaign?

Asymptotics question

Understanding p-Values using an example

After Sam didn't return home in the end, were he and Al still friends?

GDP with Intermediate Production

I can't produce songs

How does TikZ render an arc?

If Windows 7 doesn't support WSL, then what is "Subsystem for UNIX-based Applications"?

Nose gear failure in single prop aircraft: belly landing or nose-gear up landing?

What does it mean that physics no longer uses mechanical models to describe phenomena?

Putting class ranking in CV, but against dept guidelines

Can an iPhone 7 be made to function as a NFC Tag?

What does Turing mean by this statement?



Flask OIDC user login is true but token is None



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!intermittent login problems with flask-loginBasic Flask OpenID Connect exampleEnsuring single-user per account with flask-loginHow to validate JWT token in cookie after login with OpenIDconnect in ASP.NET CoreWebapplication authentication with refresh token is redirecting back to google login pageProperly managing tokens in OIDC and OAuthHow to login user through all routes with flask?Getting the current users access token in a Keycloak SPI/Provider (at initial login)Flask-OIDC with keycloak - oidc_callback default callback not workingFlask - How to remember current user when using <embed>



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I am using Flask-OIDC library to perform user authentication to external service.



When the user login for the first time the ODIC library works well. I can see the user information and the Bearer Token generated from external auth.



The problem arise when i refresh the page. If I check the user log in status, the ODIC library tell me that the user is logged in but the token is None. See this code:



@pdo_route.route('/edit_pdo', methods=['GET', 'POST'])
@oidc.require_login
def edit_pdo():
if oidc.oidc.user_loggedin:
oidc.get_access_token() # is None


The oidc.oidc.user_loggedin return True but the oidc.get_access_token() is None.



This is my OIDC configuration:




'SECRET_KEY': 'secret',
'TESTING': True,
'DEBUG': True,
'OIDC_ID_TOKEN_COOKIE_SECURE': False,
'OIDC_REQUIRE_VERIFIED_EMAIL': False,
'OIDC_USER_INFO_ENABLED': True,
'OIDC_OPENID_REALM': 'flask-demo',
'OIDC_SCOPES': ['openid', 'email', 'profile', 'name'],
'OIDC_INTROSPECTION_AUTH_METHOD': 'client_secret_post',
'OIDC_CLIENT_SECRETS': app.config.get("OIDC_CLIENT_SECRETS_PATH")










share|improve this question






























    1















    I am using Flask-OIDC library to perform user authentication to external service.



    When the user login for the first time the ODIC library works well. I can see the user information and the Bearer Token generated from external auth.



    The problem arise when i refresh the page. If I check the user log in status, the ODIC library tell me that the user is logged in but the token is None. See this code:



    @pdo_route.route('/edit_pdo', methods=['GET', 'POST'])
    @oidc.require_login
    def edit_pdo():
    if oidc.oidc.user_loggedin:
    oidc.get_access_token() # is None


    The oidc.oidc.user_loggedin return True but the oidc.get_access_token() is None.



    This is my OIDC configuration:




    'SECRET_KEY': 'secret',
    'TESTING': True,
    'DEBUG': True,
    'OIDC_ID_TOKEN_COOKIE_SECURE': False,
    'OIDC_REQUIRE_VERIFIED_EMAIL': False,
    'OIDC_USER_INFO_ENABLED': True,
    'OIDC_OPENID_REALM': 'flask-demo',
    'OIDC_SCOPES': ['openid', 'email', 'profile', 'name'],
    'OIDC_INTROSPECTION_AUTH_METHOD': 'client_secret_post',
    'OIDC_CLIENT_SECRETS': app.config.get("OIDC_CLIENT_SECRETS_PATH")










    share|improve this question


























      1












      1








      1








      I am using Flask-OIDC library to perform user authentication to external service.



      When the user login for the first time the ODIC library works well. I can see the user information and the Bearer Token generated from external auth.



      The problem arise when i refresh the page. If I check the user log in status, the ODIC library tell me that the user is logged in but the token is None. See this code:



      @pdo_route.route('/edit_pdo', methods=['GET', 'POST'])
      @oidc.require_login
      def edit_pdo():
      if oidc.oidc.user_loggedin:
      oidc.get_access_token() # is None


      The oidc.oidc.user_loggedin return True but the oidc.get_access_token() is None.



      This is my OIDC configuration:




      'SECRET_KEY': 'secret',
      'TESTING': True,
      'DEBUG': True,
      'OIDC_ID_TOKEN_COOKIE_SECURE': False,
      'OIDC_REQUIRE_VERIFIED_EMAIL': False,
      'OIDC_USER_INFO_ENABLED': True,
      'OIDC_OPENID_REALM': 'flask-demo',
      'OIDC_SCOPES': ['openid', 'email', 'profile', 'name'],
      'OIDC_INTROSPECTION_AUTH_METHOD': 'client_secret_post',
      'OIDC_CLIENT_SECRETS': app.config.get("OIDC_CLIENT_SECRETS_PATH")










      share|improve this question
















      I am using Flask-OIDC library to perform user authentication to external service.



      When the user login for the first time the ODIC library works well. I can see the user information and the Bearer Token generated from external auth.



      The problem arise when i refresh the page. If I check the user log in status, the ODIC library tell me that the user is logged in but the token is None. See this code:



      @pdo_route.route('/edit_pdo', methods=['GET', 'POST'])
      @oidc.require_login
      def edit_pdo():
      if oidc.oidc.user_loggedin:
      oidc.get_access_token() # is None


      The oidc.oidc.user_loggedin return True but the oidc.get_access_token() is None.



      This is my OIDC configuration:




      'SECRET_KEY': 'secret',
      'TESTING': True,
      'DEBUG': True,
      'OIDC_ID_TOKEN_COOKIE_SECURE': False,
      'OIDC_REQUIRE_VERIFIED_EMAIL': False,
      'OIDC_USER_INFO_ENABLED': True,
      'OIDC_OPENID_REALM': 'flask-demo',
      'OIDC_SCOPES': ['openid', 'email', 'profile', 'name'],
      'OIDC_INTROSPECTION_AUTH_METHOD': 'client_secret_post',
      'OIDC_CLIENT_SECRETS': app.config.get("OIDC_CLIENT_SECRETS_PATH")







      python flask oidc






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 23 at 13:11









      polymath

      1048




      1048










      asked Mar 22 at 12:00









      LorNapLorNap

      63




      63






















          0






          active

          oldest

          votes












          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%2f55299183%2fflask-oidc-user-login-is-true-but-token-is-none%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          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%2f55299183%2fflask-oidc-user-login-is-true-but-token-is-none%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

          Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

          밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

          1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴