GithubHelp home page GithubHelp logo

Comments (6)

ib-lundgren avatar ib-lundgren commented on July 24, 2024

OAuth 2 is not secure without SSL which is why you get this error, you don't have SSL setup on your test server. Most people don't while testing and that is fine. You can disable this check in two ways

  1. By setting the environment variable DEBUG

    $ export DEBUG=1
    $ python webapp_example.py

  2. Equivalent to above you can set this in Python (if you have problems setting environment variables)

    Somewhere in webapp_example.py, before the app.run for example

    import os
    os.environ['DEBUG'] = '1'

Hope that helps :)

from requests-oauthlib.

ihommani avatar ihommani commented on July 24, 2024

Indeed. Thx.
I noticed I wasn't the only one to wonder about this kind of exception.
I made a pull request to complete the example and highlight this potential problem.

Thx again

from requests-oauthlib.

ihommani avatar ihommani commented on July 24, 2024

Although something weird happens.
If I run the code in the normal mode browser (chrome) I get an oauthlib.oauth2.rfc6749.errors.MissingTokenError. Triggered by the same line.
If I run the same code in the browser cofidential mode, I get my user Json i.e the code runs smoothly.

Any idea of what it can be ?

from requests-oauthlib.

ib-lundgren avatar ib-lundgren commented on July 24, 2024

@ihommani thanks for the PR :)

Hrm, not quite sure whether it is on provider or client side or something weird cookie thing. Could you add

import logging
import sys
log = logging.getLogger('oauthlib')
log.addHandler(logging.StreamHandler(sys.stdout))
log.setLevel(logging.DEBUG)  

to the beginning of your code and see what debug output you get (if you use a real provider with confidential secrets make sure to remove them from output before posting).

from requests-oauthlib.

ihommani avatar ihommani commented on July 24, 2024

@ib-lundgren , everything is alright now.
I don't know what happened yesterday. Maybe something linked to the cache. I have no clue now the problem is gone.
But you've been very helpful.

See you.

from requests-oauthlib.

hellupline avatar hellupline commented on July 24, 2024

there is a regression of this issue
oauthlib change their debug ENV var from DEBUG to OAUTHLIB_INSECURE_TRANSPORT for this exception

I will create a PR to update the example

from requests-oauthlib.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.