Unable to find Acess Token on logging in to Airbnb? Anyone knows how to locate it?

Viewed 18

I am trying to test this Airbnb Python API: https://github.com/nderkach/airbnb-python

As you can see from readme documentation, one needs to provide an Access Token when logging in:

api = airbnb.Api(login, password)

api = airbnb.Api(access_token=<ACCESS_TOKEN_OBTAINED_ON_LOGIN>)

I have logged in in browser and spent a good amount of time inspecting the web developer console (the network tab), but I am unable to find it. Anyone could help? Thanks in advance!

1 Answers

I have no experience using this unofficial API but once you have logged in, you should get a response. Check this response for the access token. This is based off personal experience.

Related