1

我正在尝试使用 OAuth + SAML 承载流进行身份验证 (http://help.salesforce.com/help/doc/en/remoteaccess_oauth_SAML_bearer_flow.htm)

但我被困在我收到无效断言错误的地方:

{"error":"invalid_grant","error_description":"invalid assertion"}

这是我的断言:

<?xml version="1.0"?>
  <saml:Assertion xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" ID="C625490D-C2B9-15BE-6DFA-7286288D9655" IssueInstant="2012-04-04T06:54:14Z" Version="2.0">
    <saml:Issuer>3MVG9Y6d_Btp4.....d0jnN</saml:Issuer>
    <ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
      <ds:SignedInfo>
        <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
        <ds:SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
        <ds:Reference URI="#C625490D-C2B9-15BE-6DFA-7286288D9655">
          <ds:Transforms>
            <ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
            <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
          </ds:Transforms>
          <ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
          <ds:DigestValue>f187DeCiwFhhH2etlU+5byskey4=</ds:DigestValue>
        </ds:Reference>
      </ds:SignedInfo>
      <ds:SignatureValue>
MIID6zCCAtOgAwI...........4qbvd3sxAQmkhR98FSsQixMI+bTHq9zRgeFu6W5GWsun3tmqNE=
</ds:SignatureValue>
    </ds:Signature>
    <saml:Subject>
      <saml:NameID Format="urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified">org2@dot.com
      </saml:NameID>
      <saml:SubjectConfirmation Method="urn:oasis:names:tc:SAML:2.0:cm:bearer">
        <saml:SubjectConfirmationData Recipient="https://login.salesforce.com/services/oauth2/token" NotOnOrAfter="2012-11-20T06:35:42Z"/>
      </saml:SubjectConfirmation>
    </saml:Subject>
    <saml:Conditions NotBefore="2012-11-19T06:34:42Z" NotOnOrAfter="2012-11-20T06:35:42Z">
      <saml:AudienceRestriction>
        <saml:Audience>https://login.salesforce.com/services/oauth2/token</saml:Audience>
      </saml:AudienceRestriction>
    </saml:Conditions>
    <saml:AuthnStatement AuthnInstant="2012-11-20T06:35:42Z" SessionIndex="ED868FE5-841D-5192-766C-941A60D6602F">
      <saml:AuthnContext>
        <saml:AuthnContextClassRef>urn:oasis:names:tc:SAML:2.0:ac:classes:unspecified</saml:AuthnContextClassRef>
      </saml:AuthnContext>
    </saml:AuthnStatement>
  </saml:Assertion>

这就是我提出请求的方式:

curl https://login.salesforce.com/services/oauth2/token -H "Content-Type='application/x-www-form-urlencoded'" -d "grant_type=urn:ietf:params:oauth:grant-type:saml2-bearer" -d "assertion=`cat saml-assertion.base64`"

我已将断言正确编码为 base64url(以前我收到关于断言中无效字符的错误,我已修复)

请告诉我什么/在哪里可以进一步检查以了解为什么我的断言无效!PS:一切都是从上面 url 的示例断言中复制的,用户名、颁发者和证书由我更改。此外,我将 NotBefore 设置为用户的确切登录时间。

4

1 回答 1

-1

当您发送授权类型值时,也需要对其进行编码。urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Asaml2-bearer

Saml 断言需要是单个断言。它需要像您一样进行 Base64 编码,然后再次删除填充或 urlencode。

“断言”参数的值必须包含单个 SAML 2.0 断言。SAML 断言 XML 数据必须使用
base64url 进行编码,其中编码遵循
RFC 4648 [RFC4648] 第 5 节中的定义,并且填充位设置为零。为了避免后续编码步骤的需要(例如,通过“application/
x-www-form-urlencoded”[W3C.REC-html401-19991224]),
base64url 编码的数据不应该换行和填充字符
(“= ") 不应包括在内。

https://datatracker.ietf.org/doc/html/draft-ietf-oauth-saml2-bearer-17#section-2.1

使用后编码值发送:

grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Asaml2-bearer& assertion=PHNhbWxwOl...[省略]...ZT4

于 2013-08-14T17:02:47.527 回答