gpt4 book ai didi

python - 在 App Engine 的处理程序脚本中映射 URL

转载 作者:太空宇宙 更新时间:2023-11-04 11:00:41 25 4
gpt4 key购买 nike

我有

class Auth(webapp.RequestHandler):
def get(self,username,password):
self.response.out.write("auth" + self.request.get("username"))

我的 URL 的结构是:

/api/auth/?username=xxxx&password=xxxx

如何在我的处理程序脚本中映射此 URL?

最佳答案

处理程序:

class Auth(webapp.RequestHandler):
def get(self):
self.response.out.write("username" + self.request.get("username"))
self.response.out.write("password" + self.request.get("password"))

网址:

/api/auth?username=xxxx&password=xxxx

应用:

application = webapp.WSGIApplication([
('/api/auth', Auth),
], debug=True)

关于python - 在 App Engine 的处理程序脚本中映射 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5773560/

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