dro62273 2013-11-11 04:26
浏览 24
已采纳

如何管理我的Google App引擎帐户(使用Golang)?

I read a document "Using the Users Service" and it works. But I want to allow only several users to access my GAE, and restrict others.

So, How can I manage user accounts for my google app engine (with golang)?

I will use "Google account" system.

I need your help. Thank you! Have a nice day~

  • 写回答

1条回答 默认 最新

  • doucigua0278 2013-11-11 15:07
    关注

    I think you have 2 options:
    1. You can limit only the user of your Google App domain, go to Administration >> Application Settings >> Authentication Type.
    2. The "appengine/user" pakage just give you the basic function. You can use it to check if the current user email is in the allowed-list or not.

    var allowed = []string{"tom@example.com", "jack@example.com"}
    func handler(w http.ResponseWriter, r *http.Request) {
        c := appengine.NewContext(r)
        u := user.Current(c)
        if u == nil {
            url, err := user.LoginURL(c, r.URL.String())
            if err != nil {
                http.Error(w, err.Error(), http.StatusInternalServerError)
                return
            }
            w.Header().Set("Location", url)
            w.WriteHeader(http.StatusFound)
            return
        }
    
        var granted bool
        for _, email := range allowed {
            if u.Email == email {
               granted = true
               break;
            }
        }
        if !granted {
            http.Error(w, "you're not in the allowed list", 400)
            return
        }
        fmt.Fprintf(w, "Hello, %v!", u)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类
  • ¥15 微带串馈天线阵列每个阵元宽度计算
  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据