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 获取当前用户

        时间:2023-11-07

          <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 获取当前用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:GCloud Upload httplib2.RedirectMissingLocation: 重定向但响应缺少 Loc 下一篇:通过云功能在 Google Cloud Storage 中创建新的 csv 文件

                  相关文章

                    • <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'>

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