0

我在 Safari中Google OAuth使用时遇到问题。cfhttp它在我的本地环境中工作,但在我们的托管环境中,每次我使用 google oauth 时,我都会得到以下返回码:

错误详情:

string  400 Bad Request

文件内容:

string  { "error" : "invalid_grant", "error_description" : "Code was already redeemed." }

标题:

string HTTP/1.1 400 Bad Request Content-Type: application/json Cache-Control: no-cache, no-store, max-age=0, must-revalidate Pragma: no-cache Expires: Fri, 01 Jan 1990 00:00 :00 GMT 日期:2014 年 11 月 22 日星期六 01:38:30 GMT X-Content-Type-Options:nosniff X-Frame-Options:SAMEORIGIN X-XSS-Protection:1;模式=块服务器:GSE 备用协议:443:quic,p=0.02 传输编码:分块

    <cffunction name="getGoogleToken" access="public" output="false">
    <cfargument name="Event" type="any">
    <cfargument name="code" type="any">
    <cfset var rc = Event.getCollection() />
    <cfscript>
        var postBody = "code=" & UrlEncodedFormat(arguments.code) & "&";
             postBody = postBody & "client_id=" & UrlEncodedFormat(rc.googleclientid) & "&";
             postBody = postBody & "client_secret=" & UrlEncodedFormat(rc.googleclientsecret) & "&";
             postBody = postBody & "redirect_uri=" & UrlEncodedFormat(rc.googlecallback) & "&";
             postBody = postBody & "grant_type=authorization_code";

    </cfscript>
    <cfhttp url="https://accounts.google.com/o/oauth2/token" method="post" result="result" charset="utf-8"> 
        <cfhttpparam type="header" name="Content-Type" value="application/x-www-form-urlencoded"> 
        <cfhttpparam type="body" value="#postBody#"> 
    </cfhttp>               
    <cfdump var="#result#" />
    <cfabort>
    <cfreturn deserializeJSON(result.filecontent.toString()) />
</cffunction>
4

1 回答 1

2

“代码已被兑换。” 错误意味着您正在尝试使用已经使用过的授权码。例如,它调用两个函数,因此两次发送访问令牌请求。请注意,给定的授权代码只能使用一次。

于 2015-02-01T07:07:27.810 回答