服务应用程序的Google oAuth 2.0(JWT令牌请求)

时间:2012-06-20 19:05:12

标签: c# oauth oauth-2.0 google-oauth jwt

我尝试为此处描述的服务帐户实施Google oAuth 2:UnityScript上的https://developers.google.com/accounts/docs/OAuth2ServiceAccount(或C# - 这并不重要,因为它们都使用相同的Mono .NET类)。

我在这里找到了类似的主题:Is there a JSON Web Token (JWT) example in C#? web-token-jwt-example-in-c但我仍然没有成功。

首先,我已经生成了标题和声明集(就像在谷歌文档中一样)

var header: String = GetJWTHeader();
var claimset: String = GetJWTClaimSet();

结果是(为清晰起见,用新行分隔):

  

{" ALG":" RS256""典型值":" JWT"}

     

{" ISS":" 425466719070-1dg2rebp0a8fn9l02k9ntr6u5o4a8lp2.apps.googleusercontent.com",

     

"范围":" https://www.googleapis.com/auth/prediction",

     

" AUD":" https://accounts.google.com/o/oauth2/token",

     

"&EXP#34;:1340222315,

     

" IAT":1340218715}

Base-64编码方法:

public static function Base64Encode(b: byte[]): String {
    var s: String = Convert.ToBase64String(b);
    s = s.Replace("+", "-");
    s = s.Replace("/", "_");
    s = s.Split("="[0])[0]; // Remove any trailing '='s
    return s;
}

public static function Base64Encode(s: String): String {    
    return Base64Encode(Encoding.UTF8.GetBytes(s));
}

然后我正在签名。

var to_sign: byte[] = 
     Encoding.UTF8.GetBytes(Base64Encode(header) + "." + Base64Encode(claimset));
var cert: X509Certificate2 = 
     new X509Certificate2(google_pvt_key.ToArray(), "notasecret");
var rsa: RSACryptoServiceProvider = cert.PrivateKey;
var sgn: String = Base64Encode(rsa.SignData(to_sign, "SHA256"));

var jwt: String = Base64Encode(header) + "." + Base64Encode(claimset) + 
                     "." + sgn;

然后形成请求:

var url: String = "https://accounts.google.com/o/oauth2/token";
var form: WWWForm = new WWWForm();
form.AddField("grant_type", "assertion");
form.AddField("assertion_type", "http://oauth.net/grant_type/jwt/1.0/bearer");
form.AddField("assertion", jwt);
var headers: Hashtable = form.headers;
headers["Content-Type"] = "application/x-www-form-urlencoded";

var www: WWW = new WWW(url, form.data, headers);

我得到的只是" 错误400:错误请求"。

编码数据看起来像(为清晰起见添加了换行符):

  

eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9。

     

eyJpc3MiOiI0MjU0NjY3MTkwNzAtMWRnMnJlYnAwYThmbjlsMDJrOW50cjZ1NW80YThscDIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzY29wZSI6Imh0dHBzOi8vd3d3Lmdvb2dsZWFwaXMuY29tL2F1dGgvcHJlZGljdGlvbiIsImF1ZCI6Imh0dHBzOi8vYWNjb3VudHMuZ29vZ2xlLmNvbS9vL29hdXRoMi90b2tlbiIsImV4cCI6MTM0MDIyMjMxNSwiaWF0IjoxMzQwMjE4NzE1fQ。

     

lIFg7-Og_BcC5qpICLt7USwGIHUOz-vV4ADNq0AWhuRtsvFrbZn5mxk4n9r5qU66q4reTVVAtuW06DeGsdcBMNgEdIMvN6VuYQybs64p9mqrfECBYxO1FWHbUG-2On1IpowybEsRRUjZfp0jFuEY7SLE3XRaXan0k5zmejcvLQo

我花了两天时间试图弄清楚出了什么问题,但我无法看到。

另外,我找不到合适的文档和示例。

我只想收到一个代币。

  1. 我是否以正确的方式签署了字节?
  2. 应该"范围" claimset中的参数是什么样的?我已经尝试了#34; https://www.googleapis.com/auth/devstorage.readonly"和" https://www.googleapis.com/auth/prediction"。
  3. 什么" iss"参数应该等于?客户端ID或电子邮件地址? (试过两个)
  4. 找出错误的方法是什么?
  5. 服务应用程序是否有任何C#库(不是已安装的应用程序或客户端登录)?
  6. 我变得疯狂......它必须工作,但它没有......: - /

3 个答案:

答案 0 :(得分:7)

解决方案是在请求代码中所有斜杠都必须反斜杠

WRONG:

"scope":"https://www.googleapis.com/auth/prediction",
"aud":"https://accounts.google.com/o/oauth2/token",

正确:

"scope":"https:\\/\\/www.googleapis.com\\/auth\\/prediction",
"aud":"https:\\/\\/accounts.google.com\\/o\\/oauth2\\/token",

答案 1 :(得分:1)

我已经回答了一个类似的问题,提议使用.NET Google OAuth API进行非常简单但有效的实施here

答案 2 :(得分:0)

尝试使用system.identitymodel.tokens.jwt .Net库 您可以从NuGet安装它。 请参阅我的帖子中的示例(我用它来验证websockets服务器,但JWT处理是通用的)

http://mydevtricks.blogspot.co.il/2014/10/xsocketsnet-authentication-with-jwt.html