GithubHelp home page GithubHelp logo

Comments (6)

theladyjaye avatar theladyjaye commented on July 24, 2024 3

Add this line to the top of your python module:

from __future__ import unicode_literals

from requests-oauthlib.

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

This error is raised because oauthlib currently refuses to work with anything but unicode values.

This will be resolved in oauthlib in the near future by converting all input to unicode assuming utf-8 encoding. If you are using another encoding you will have to either specify this to the OAuth1 constructor using the encoding parameter* or convert your input to unicode yourself.

*) PR with support for this will follow

from requests-oauthlib.

Rukomoynikov avatar Rukomoynikov commented on July 24, 2024

For example you could wrap your strings with 'unicode' function:
resource_owner_key = credentials.get('oauth_token')
resource_owner_key = unicode.resource_owner_key

from requests-oauthlib.

warunsl avatar warunsl commented on July 24, 2024

I get this error :

ValueError: Only unicode objects are escapable.

when I am making a call to the OAuth1 constructor to get the access token, using request tokens and the verifier as parameters. Doing a

request_token = request_token.encode('utf-8')
request_secret = request_secret.encode('utf-8')

OR

request_token = request_token.unicode(pokemon, 'utf-8')
request_secret = request_secret.unicode(pokemon, 'utf-8')

isn't helping either.

Has anyone found a way to work with this?

from requests-oauthlib.

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

You are probably forgetting to encode one of the other input parameters.

I'll be pushing a new release of oauthlib to PyPI later this week where input encoding is automatic. If you want that right now you can install from master via

pip install -U git+git://github.com/idan/oauthlib.git

from requests-oauthlib.

marco-lancini avatar marco-lancini commented on July 24, 2024

I encountered the same problem.
The fact is that in this way:

credentials = parse_qs(r.content)
resource_owner_key = credentials.get('oauth_token')
resource_owner_secret = credentials.get('oauth_token_secret')

both resource_owner_key and resource_owner_secret are lists containing one element each.
I solved this issues simply extracting the only element present in each list

resource_owner_key = credentials.get('oauth_token')[0]
resource_owner_secret = credentials.get('oauth_token_secret')[0]

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.