我正在尝试在移动编程语言上实现EPIC FHIR智能后端服务(后端OAuth 2.0)。
我已经创建了我的开发人员帐户,在那里上传了公钥,并选择 作为应用程序受众。backend system
我很确定我的jwt令牌是正确的。我已经检查过它 jwt.io,签名是正确的。但是,我总是收到此错误:
{ “错误”: “invalid_client”,“error_description”: 空 }
我也尝试了其他可能的解决方案,例如:
确保喷气式飞机索赔内的到期日低于5分钟
将有效负载放置在具有正确内容类型的正文中,即application/x-www-form-urlencoded
确保使用沙盒client_id
使用正确的 jwt 登录方法 (RS384
)
我应该怎么做才能解决此问题?
顺便说一句,我还在Google组上看到了几个讨论,说在创建开发帐户后等待一两天是值得的。
以下是我的代码。感谢您的帮助!
var (
oauth2TokenUrl = "https://fhir.epic.com/interconnect-fhir-oauth/oauth2/token"
sandboxClientID = "..."
privateKey = "..."
)
// load private key
signKey, err := jwt.ParseRSAPrivateKeyFromPEM([]byte(privateKey))
So(err, ShouldBeNil)
// construct jwt claims
now := time.Now()
claims := jwt.MapClaims{
"iss": sandboxClientID,
"sub": sandboxClientID,
"aud": oauth2TokenUrl,
"jti": uuid.New().String(), // fill with reference id
"exp": now.Add(1 * time.Minute).Unix(), // cannot be more than 5 minutes!
}
log.Info(" => claims:", utility.ToJsonString(claims))
// generate signed token using private key with RS384 algorithm
alg := jwt.SigningMethodRS384
signedToken, err := jwt.NewWithClaims(alg, claims).SignedString(signKey)
So(err, ShouldBeNil)
log.Info(" => signed token", signedToken)
// prepare api call payload
payload := map[string]string{
"grant_type": "client_credentials",
"client_assertion_type": "urn:ietf:params:oauth:client-assertion-type:jwt-bearer",
"client_assertion": signedToken,
}
// dispatch the api call
req := resty.New().
R().
EnableTrace().
SetFormData(payload)
res, err := req.Post(oauth2TokenUrl)
So(err, ShouldBeNil)
log.Info(" => response status:", res.StatusCode())
log.Info(" => response header:", res.Header())
log.Info(" => response body:", string(res.Body()))
// parse response
resBody := make(map[string]interface{})
err = json.Unmarshal(res.Body(), &resBody)
So(err, ShouldBeNil)
呼如林
MM们
繁星点点滴滴
相关分类