Untitled
unknown
plain_text
3 years ago
682 B
13
Indexable
import requests
def login(username, password):
# Send a POST request to the login endpoint with the user's credentials
response = requests.post('https://my-app.com/login', json={
'username': username,
'password': password
})
# If the login is successful, the server will return a 200 status code
if response.status_code == 200:
# Extract the user's auth token from the response
auth_token = response.json()['auth_token']
# Store the auth token in the app's database
store_auth_token(auth_token)
# Return the auth token to the caller
return auth_token
else:
# If the login fails, raise an error
raise Exception('Login failed')
Editor is loading...