我在移动应用中使用https://github.com/EddyVerbruggen/cordova-plugin-googleplus进行外部身份验证。在Google的回复中,我得到以下信息:
obj.email // 'email@gmail.com'
obj.userId // user id
obj.displayName // 'My Name'
obj.idToken // idToken that can be exchanged to verify user identity.
obj.serverAuthCode // Auth code that can be exchanged for an access token and refresh token for offline access
我有兴趣接受此回复,并将其发送到我的.Net Web API以注册/登录用户。
我想知道我应该如何格式化来自我的客户端的http请求,以及AccountController.cs中的方法是什么样子来正确处理请求,并传回一个本地令牌以便在其余部分使用应用