1. <legend id='dj0uA'><style id='dj0uA'><dir id='dj0uA'><q id='dj0uA'></q></dir></style></legend>
    2. <i id='dj0uA'><tr id='dj0uA'><dt id='dj0uA'><q id='dj0uA'><span id='dj0uA'><b id='dj0uA'><form id='dj0uA'><ins id='dj0uA'></ins><ul id='dj0uA'></ul><sub id='dj0uA'></sub></form><legend id='dj0uA'></legend><bdo id='dj0uA'><pre id='dj0uA'><center id='dj0uA'></center></pre></bdo></b><th id='dj0uA'></th></span></q></dt></tr></i><div id='dj0uA'><tfoot id='dj0uA'></tfoot><dl id='dj0uA'><fieldset id='dj0uA'></fieldset></dl></div>
          <bdo id='dj0uA'></bdo><ul id='dj0uA'></ul>
      1. <tfoot id='dj0uA'></tfoot>

        <small id='dj0uA'></small><noframes id='dj0uA'>

        从 BlobstoreUploadHandler 获取当前用户

        Get the current user from BlobstoreUploadHandler(从 BlobstoreUploadHandler 获取当前用户)

          <tfoot id='IPGHf'></tfoot>
          <legend id='IPGHf'><style id='IPGHf'><dir id='IPGHf'><q id='IPGHf'></q></dir></style></legend>
            <tbody id='IPGHf'></tbody>

          1. <small id='IPGHf'></small><noframes id='IPGHf'>

              <bdo id='IPGHf'></bdo><ul id='IPGHf'></ul>

                • <i id='IPGHf'><tr id='IPGHf'><dt id='IPGHf'><q id='IPGHf'><span id='IPGHf'><b id='IPGHf'><form id='IPGHf'><ins id='IPGHf'></ins><ul id='IPGHf'></ul><sub id='IPGHf'></sub></form><legend id='IPGHf'></legend><bdo id='IPGHf'><pre id='IPGHf'><center id='IPGHf'></center></pre></bdo></b><th id='IPGHf'></th></span></q></dt></tr></i><div id='IPGHf'><tfoot id='IPGHf'></tfoot><dl id='IPGHf'><fieldset id='IPGHf'></fieldset></dl></div>
                  本文介绍了从 BlobstoreUploadHandler 获取当前用户的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  I want to get the current user from BlobstoreUploadHandler. I'm using endpoints for my web application, but (outside of Endpoints) I built /uploadUrl to upload files to the Blobstore.

                  The image uploads correctly. So, I need to link the image uploaded to the user, but users.get_current_user() returns None. On the frontend side the user is logged using OAuth2. Any idea for this issue?

                  If I use endpoints.get_current_user() raise an error:

                  No valid endpoints user in environment

                  This is my code:

                  class UploadHandler(blobstore_handlers.BlobstoreUploadHandler):
                      def post(self):
                          upload_files = self.get_file_infos()
                          file_info = upload_files[0]
                  
                          gcs_filename = file_info.gs_object_name
                          file_key = blobstore.create_gs_key(gcs_filename)
                  
                          File(file=gcs_filename, owner=users.get_current_user() ).put()
                  

                  解决方案

                  Each App requires its own login, and every class needs to have users imported and declared if you want to use User class in the code.

                  from google.appengine.api import users import webapp2

                  class MyHandler(webapp2.RequestHandler):
                      def get(self):
                          user = users.get_current_user()
                          if user:
                              greeting = ('Welcome, %s! (<a href="%s">sign out</a>)' %
                                          (user.nickname(), users.create_logout_url('/')))
                          else:
                              greeting = ('<a href="%s">Sign in or register</a>.' %
                                          users.create_login_url('/'))
                  
                          self.response.out.write('<html><body>%s</body></html>' % greeting)
                  

                  For more details please see this article - https://cloud.google.com/appengine/docs/python/users/

                  这篇关于从 BlobstoreUploadHandler 获取当前用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                  Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                  Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                  Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                  Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                  Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)

                        <tbody id='fjRjV'></tbody>
                      • <bdo id='fjRjV'></bdo><ul id='fjRjV'></ul>
                        <i id='fjRjV'><tr id='fjRjV'><dt id='fjRjV'><q id='fjRjV'><span id='fjRjV'><b id='fjRjV'><form id='fjRjV'><ins id='fjRjV'></ins><ul id='fjRjV'></ul><sub id='fjRjV'></sub></form><legend id='fjRjV'></legend><bdo id='fjRjV'><pre id='fjRjV'><center id='fjRjV'></center></pre></bdo></b><th id='fjRjV'></th></span></q></dt></tr></i><div id='fjRjV'><tfoot id='fjRjV'></tfoot><dl id='fjRjV'><fieldset id='fjRjV'></fieldset></dl></div>

                        <small id='fjRjV'></small><noframes id='fjRjV'>

                      • <legend id='fjRjV'><style id='fjRjV'><dir id='fjRjV'><q id='fjRjV'></q></dir></style></legend>
                        <tfoot id='fjRjV'></tfoot>