gpt4 book ai didi

python - 解析来自重定向 URL 的信息

转载 作者:太空宇宙 更新时间:2023-11-03 19:33:01 25 4
gpt4 key购买 nike

我正在使用 Hunch API,并尝试允许用户使用我的系统进行 OAuth。我正在引导他们

http://hunch.com/authorize/v1/?app_id=12345&next=http://hoosheer.appspot.com/get-recs

从此,它允许用户输入他们的详细信息并将他们重定向到我的网页。一旦他们被重定向到我的页面,该网址就会包含以下信息。

http://hoosheer.appspot.com/get-recs?auth_token_key=12345abc&user_id=hn_113&next=http://hoosheer.appspot.com/get-recs

如何在Python中从中获取auth_token_key信息?

谢谢:)

最佳答案

您需要从请求对象中获取已解析的查询字符串参数。您可以使用 get() 来做到这一点,如下所示:

auth_token_key = request.get('auth_token_key')

您可以在docs阅读此内容。 .

关于python - 解析来自重定向 URL 的信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4836868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com