Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Zahra Rajabi
tweepy
Commits
801c81e1
Commit
801c81e1
authored
May 10, 2011
by
Josh Roesslein
Browse files
Add Basic Authentication example.
parent
cf4ebd0d
Changes
1
Hide whitespace changes
Inline
Side-by-side
examples/basic_auth.py
0 → 100644
View file @
801c81e1
import
tweepy
# === Basic Authentication ===
#
# *Note: Basic Authentication is deprecated and no longer supported on Twitter.
# It is still provided for use in services like Status.net which still suppports it.*
#
# This mode of authentication requires the user provide their username and plain text password.
# These credentials will then be provided for each request to the API for authentication.
# You would normally fetch this in your application
# by asking the user or loading from some dark place.
username
=
""
password
=
""
# Create an authentication handler passing it the username and password.
# We will use this object later on when creating our API object.
auth
=
tweepy
.
auth
.
BasicAuthHandler
(
username
,
password
)
# Create the API object providing it the authentication handler to use.
# Each request will then be authenticated using this handler.
api
=
tweepy
.
API
(
auth
)
api
.
update_status
(
'Updating using basic authentication via Tweepy!'
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment