Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8649299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T13:31:34+00:00 2026-06-12T13:31:34+00:00

I am trying to get the user ID for a twitter user using a

  • 0

I am trying to get the user ID for a twitter user using a python

import twitter
twitter_api = twitter.Twitter(domain='api.twitter.com', api_version='1',auth = twitter.oauth.OAuth(ACCESS_KEY, ACCESS_SECRET,
CONSUMER_KEY, CONSUMER_SECRET))
usr = twitter_api.api.GetUser(SCREEN_NAME)
print usr.name

Does not work, and the debug information is not of much help, I did not find any more resources online.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T13:31:35+00:00Added an answer on June 12, 2026 at 1:31 pm

    The twitter_api object that you’ve instantiated implicitly converts all function calls performed on it into the path of the API URL, with any keyword arguments converted to API parameters. For example:

    twitter_api.statuses.user_timeline()
    # ^- this converts to "api.twitter.com/1/statuses/user_timeline.json"
    
    twitter_api.statuses.user_timeline(user_id="a")
    # ^- this converts to "api.twitter.com/1/statuses/user_timeline.json?user_id=a"
    
    twitter_api.statuses.user_timeline(foo)
    # ^- this breaks - "foo" is not a key/value pair, and cannot be sent
    

    Hence, you’re trying to call the URL 1/api/GetUser.json – and also passing it an argument, which it doesn’t know how to handle. Try this instead:

    import twitter
    t = twitter.Twitter(auth=twitter.OAuth(ACCESS_KEY, ACCESS_SECRET, CONSUMER_KEY, CONSUMER_SECRET))
    t.users.lookup(screen_name=SCREEN_NAME)
    # returns the user object
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to get the access_token for a user using the FB API
Im trying to get a Twitter feed , either using the search API or
I'm trying to get to grips with web2py/python. I want to get the user
I'm trying out the twitter streaming api. I could succesfully filter tweets by using
I am trying to authenticate user using OAuth and retrieve the user data. When
I'm trying to consume twitter's REST api mentioned at this link using WCF REST
I am trying to get a user's access token using twitter4j in my appengine
Trying to follow someone on Twitter using new iOS 5 API, getting 406 return
I'm trying to get user GUID from Active Directory. My code: DirectoryEntry entry =
hi I am trying to get user profile information like this once the authentication

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.