我想用gmail/google帐户登录,我在Coldfusion中找到了这个教程gmail登录。我完成了所有的步骤,登录后我的页面重定向,然后我想显示用户配置文件信息,所以我转储这个
<cfdump var="#session.profilesArray#">
但它给了我一个空数组。为什么我在成功登录后没有得到我的个人资料数据。如果我获取个人资料的方式不对,那么正确的方式是什么。谢谢
您只需将此行添加到scope
中打开Application.cfc
,然后添加此代码用scope = "https://www.googleapis.com/auth/userinfo.email+https://www.googleapis.com/auth/userinfo.profile
更改scope = "https://www.googleapis.com/auth/analytics.readonly"
你可以只添加scope = "https://www.googleapis.com/auth/userinfo.profile
,但如果你想访问电子邮件,那么在我回复时添加第二个。
<cfset request.oauthSettings =
{scope = "https://www.googleapis.com/auth/userinfo.email+https://www.googleapis.com/auth/userinfo.profile",
client_id = "Your-id",
client_secret = "your-secret",
redirect_uri = "redirect-page",
state = "optional"} />
现在你可以从函数中获得用户信息,你可以像这样调用
<cfscript>
public function getProfile(accesstoken) {
var h = new com.adobe.coldfusion.http();
h.setURL("https://www.googleapis.com/oauth2/v1/userinfo");
h.setMethod("get");
h.addParam(type="header",name="Authorization",value="OAuth #accesstoken#");
h.addParam(type="header",name="GData-Version",value="3");
h.setResolveURL(true);
var result = h.send().getPrefix();
return deserializeJSON(result.filecontent.toString());
}
</cfscript>
<cfoutput>
<cfset show = getProfile(session.ga_accessToken)>
<cfdump var="#show#">
</cfoutput>
希望这对你有帮助。