ContributionsMost RecentMost LikesSolutionsRe: GoToWebinar API Support I am trying to get authorization code through python code but i am using below code . ``` initial_url = f"https://authentication.logmeininc.com/oauth/authorize?client_id={CONSUMER_KEY}&response_type=code" response = requests.get(initial_url) response_key = response.request.url.split("=")[-1] ``` but i get 200 Ok but could not get the code. I tried looking into the documentation but did not find helpful.