import requests | |
import json | |
API_URL = "https://api.airbnb.com" | |
# API_KEY might be tied to a particular app installation, use with caution | |
API_KEY = "915pw2pnf4h1aiguhph5gc5b2" | |
class AuthError(Exception): | |
""" | |
Authentication error | |
""" | |
pass | |
class Api(object): | |
""" Base API class | |
>>> api = Api("vtflotci@sharklasers.com", "qwerty") | |
>>> api.uid | |
25418725 | |
>>> api.get_profile() # doctest: +ELLIPSIS | |
{...} | |
>>> api = Api("foo", "bar") # doctest: +IGNORE_EXCEPTION_DETAIL | |
Traceback (most recent call last): | |
... | |
AuthError | |
>>> api = Api(uid=25418725, access_token="c9pfdtaakmqh8vrwcyviaai0w") | |
""" | |
def __init__(self, username=None, password=None, | |
uid=None, access_token=None, api_key=API_KEY): | |
self._session = requests.Session() | |
self._session.headers = { | |
"Accept": "application/json", | |
"Accept-Encoding": "gzip, deflate", | |
"Content-Type": "application/json", | |
"X-Airbnb-API-Key": api_key, | |
"User-Agent": "Airbnb/4.7.0 iPhone/8.1.2" | |
} | |
if uid and access_token: | |
self.uid = uid | |
self._access_token = access_token | |
self._session.headers.update({ | |
"X-Airbnb-OAuth-Token": self._access_token | |
}) | |
else: | |
assert(username and password) | |
login_payload = {"username": username, | |
"password": password, | |
"prevent_account_creation": "true"} | |
r = self._session.post( | |
API_URL + "/v1/authorize", data=json.dumps(login_payload) | |
) | |
if "access_token" not in r.json(): | |
raise AuthError | |
r.raise_for_status() | |
self._access_token = r.json()["access_token"] | |
self._session.headers.update({ | |
"X-Airbnb-OAuth-Token": self._access_token | |
}) | |
r = self._session.get(API_URL + "/v1/account/active") | |
r.raise_for_status() | |
self.uid = r.json()["user"]["user"]["id"] | |
def get_profile(self): | |
assert(self._access_token and self.uid) | |
r = self._session.get(API_URL + "/v1/users/" + str(self.uid)) | |
r.raise_for_status() | |
return r.json() | |
if __name__ == "__main__": | |
import doctest | |
doctest.testmod() |
Tuesday, February 7, 2017
airbnb clone login
https://github.com/nderkach/airbnb-python/blob/master/airbnb/api.py
Subscribe to:
Post Comments (Atom)
First and foremost, thank you for demonstrating how to quickly and easily launch an Airbnb clone with incredible features. Up-and-coming entrepreneurs have had a fantastic opportunity to create and launch an Airbnb clone app, earn revenue, gain users, and pave the way past the industry's behemoths. Your information is concise and simple to understand.
ReplyDelete