Currently I'm working a project which needs to retrieve Stack Overflow questions to analyze them. First I started to retrieve data without creating an authentication token.
response = requests.get("https://api.stackexchange.com/2.2/questions?order=desc&sort=activity&site=stackoverflow")
But I found out that I can access to API with an authorization token. So I created an account. But I cannot understand w how to retrieve the data with authorization token. I read authentication details but I couldn't figure that out. Can any one explain me the process to get the data with using authorization token?