1

我在我的网站页面中使用 CIM 托管页面,例如,

<form method="post" action="https://secure.authorize.net/profile/manage"
id="formAuthorizeNetPage" style="display:none;">
<input type="hidden" name="Token"
value="pfGaUNntoTxZYeqqYDjGCQ4qyCHcsXGXLJ2i7MPCEiH6CH5n5qKqcl8EBiTClxu01B
SeH5eZg7LVUVVzw5kJKVMitQ3pyMB5UZCduMWd6Ku9aT2gyFm69EKMGfyWPmI4p+Bb4TJf2F0
7rInSrn2MWlM6f2xd7aRu1XBn0WXoPxK1j9FMGX2CNCoCBp3cOXB7"
/>
</form>

我的困惑是如何在这里获得 Token 价值。

4

1 回答 1

2

将此 XML 作为请求传递,

<?xml version=\"1.0\" encoding=\"utf-8\"?>
        <getHostedProfilePageRequest xmlns=\"AnetApi/xml/v1/schema/AnetApiSchema.xsd\">"<merchantAuthentication>".
        <name>loginname</name>
        <transactionKey>transactionkey </transactionKey>
        </merchantAuthentication>
        <customerProfileId>cim_id</customerProfileId>
 <hostedProfileSettings>
 </hostedProfileSettings>
    </getHostedProfilePageRequest>

并检查其响应,您可以在其中找到特定 CIM 用户配置文件的令牌值 :)

于 2012-12-03T07:20:10.570 回答