oauth2无法获取令牌:错误的请求

时间:2016-03-08 06:48:06

标签: go oauth-2.0 request google-oauth token

我编写了一个处理程序,以便在访问路径/auth/google/callback时,尝试通过OAuth2使用Google帐户登录。处理程序的实现方式如下:

package route

import (
    "net/http"
    "golang.org/x/oauth2"
    "golang.org/x/oauth2/google"
    "fmt"
)

func GoogleOAuthHandler(w http.ResponseWriter, r *http.Request) {
    conf:=&oauth2.Config{
        ClientID:"myclientid",
        ClientSecret:"myclientsecret",
        RedirectURL:"http://localhost:3000",
        Scopes:[]string{
            "https://www.googleapis.com/auth/userinfo.profile",
            "https://www.googleapis.com/auth/userinfo.email",
        },
        Endpoint:google.Endpoint,
    }

    code := r.URL.Query().Get("code")

    token, err := conf.Exchange(oauth2.NoContext, code)
    if err != nil {
        http.Error(w, err.Error(), http.StatusInternalServerError)
        return
    }

    fmt.Println(token)

    http.Redirect(w, r, "/", http.StatusMovedPermanently)
}

func main()中,http.HandleFunc("/auth/google/callback",route.GoogleOAuthHandler)已设置

当我访问该路径时,它会在浏览器上抛出这样的错误:

oauth2: cannot fetch token: 400 Bad Request
Response: {
  "error" : "invalid_request",
  "error_description" : "Missing required parameter: code"
}

我错过了什么吗?请指示我正确访问OAuth2并从Google帐户获取令牌和信息

1 个答案:

答案 0 :(得分:1)

您正在尝试访问未在网址中定义的网址参数(code)。

r.URL.Query().Get()返回url地址中定义的url参数。在您的情况下,您正在搜索缺少的code param。

检查Exchange方法,将授权码转换为令牌。

func (c *Config) Exchange(ctx context.Context, code string) (*Token, error).

您的案例中的令牌是url参数,但未声明。总结一下,请在URL中包含令牌字符串作为参数,否则请在代码中的某处声明。