我想要完成的是能够将来自 Force.com 的数据上传到已设置的服务帐户下的 Google Fusion Table 中,以便可以根据该数据生成网络图可视化并显示在Force.com 中的 VF 页面。
我编写了一个 Apex 类,其中包含以下内容:
public class NetworkGraphTestController {
public static String base64URLEncode(Blob input) {
String output = encodingUtil.base64Encode(input);
output = output.replace('+', '-');
output = output.replace('/', '_');
while (output.endsWith('=')) {
output = output.subString(0, output.length()-1);
}
return output;
}
public static Long findSecondsBetween2DateTimes(DateTime dt1, DateTime dt2)
{
Integer intDays = dt1.Date().daysBetween(dt2.Date());
Long seconds = dt2.getTime() - dt1.getTime();
Long daysToSeconds = intDays * 24 * 60 * 60;
return daysToSeconds + seconds;
}
public static void generateJWT() {
String pkCS8PrivateKey = 'PRIVATE KEY OBTAINED VIA OPENSSL';
DateTime utc0 = DateTime.newInstance(1970, 1, 1, 0, 0, 0);
DateTime issueTime = DateTime.now();
JSONGenerator gen = JSON.createGenerator(false);
gen.writeStartObject();
gen.writeStringField('iss', 'xxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx@developer.gserviceaccount.com');
gen.writeStringField('scope', 'https:\\/\\/www.googleapis.com\\/auth\\/fusiontables');
gen.writeStringField('aud', 'https:\\/\\/accounts.google.com\\/o\\/oauth2\\/token');
Long now = findSecondsBetween2DateTimes(utc0, issueTime);
gen.writeNumberField('exp', now + 3500);
gen.writeNumberField('iat', now);
String claimSet = gen.getAsString().trim();
System.debug(gen.getAsString());
System.debug('Gen trimmed: ' + gen.getAsString().trim());
String header = '{"alg":"RS256", "typ":"JWT"}';
String signatureInput = base64URLEncode(blob.valueOf(header)) + '.' + base64URLEncode(blob.valueOf(claimSet));
Blob signature = Crypto.sign('RSA', blob.valueOf(signatureInput), encodingUtil.base64decode(pkCS8PrivateKey));
String jwt = signatureInput+'.'+base64URLEncode(signature);
//System.debug(jwt);
Http h = new Http();
HttpRequest req = new HttpRequest();
req.setHeader('Content-Type', 'application/x-www-form-urlencoded');
req.setMethod('POST');
req.setBody('grant_type=' + encodingUtil.urlEncode('urn:ietf:params:oauth:grant-type:jwt-bearer', 'UTF-8')+'&assertion=' + encodingUtil.urlEncode(jwt, 'UTF-8'));
req.setEndpoint('https://accounts.google.com/o/oauth2/token');
System.debug('Request: ' + req + ' BODY: ' + req.getBody());
//System.debug(req.toString());
HttpResponse res = h.send(req);
System.debug(res + ' BODY: ' + res.getBody() + ' STATUS: ' + res.getStatus());
}
}
服务帐户已设置好,并且已在 Google API 控制台中启用了 Fusion Tables API。我从 Google 通过 OpenSSL 提供的 PKCS12 p12 私钥文件中提取了 PKCS8 密钥,虽然我不熟悉这个过程,所以可能出错了。我确实注意到,通过我多次尝试提取该私钥中的值,Crypto 类直到我获得当前存储在 pkCS8PrivateKey 中的值才接受密钥值。如果我没记错这个过程,它首先将 PKCS12 文件转换为中间 pem 文件,然后提取 PKCS8 格式的私钥,并在另一个 pem 文件中输出。
我遇到的 400 'Bad Request' 错误的正文如下:
{
"error" : "invalid_grant"
}
我也尝试过不在 iss 和 scope 参数中转义正斜杠,但这没有区别。我还允许通过远程站点安全设置访问“ https://accounts.google.com ”。
我编写此代码的最大来源是这个问题: Force.com Apex Code to generate Google API oAuth 2.0 JWT
该问题的创建者最终与我现在在同一条船上,因为他只能在尝试通过 Google 进行身份验证时检索一个 invalid_grant 错误。不幸的是,他的问题没有得到回答,所以,我在这里。
对于我面临的问题,我很感激任何可以提供的帮助。