<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: hosted payment form &amp;quot;Finger Print value is invalid&amp;quot; in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/60281#M34829</link>
    <description>&lt;P&gt;There have been a couple of recent improvements to the hosted form (in the last couple of weeks). If anyone following this thread would like to try again and see if they're still running into problems, I'd appreciate the feedback.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At the very least, correcting a decline works properly (at least as long as you stay on the same form. If the user moves back and then resubmits the form token, you'll still get an invalid token error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'd like to collect some real world feedback on the status of this particular collection of problems so that we can plan future improvements.&lt;/P&gt;</description>
    <pubDate>Wed, 25 Oct 2017 21:00:23 GMT</pubDate>
    <dc:creator>Aaron</dc:creator>
    <dc:date>2017-10-25T21:00:23Z</dc:date>
    <item>
      <title>hosted payment form "Unexpected error"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57119#M31855</link>
      <description>&lt;P&gt;I am developing a webpage that uses the Authorize.net hosted payment form to process the credit cards. The payment form loads fine, but when I fill in the form and hit the "Pay" button, the message "Unexpected error. Please try again."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I hit "Pay" again it will come back with the message "Finger Print value is not valid."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is the issue here and how can it be resolved?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 13:27:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57119#M31855</guid>
      <dc:creator>aschuck</dc:creator>
      <dc:date>2017-03-03T13:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Unexpected error"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57120#M31856</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21319"&gt;@aschuck&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this occuring in the sanbox or production? &amp;nbsp;Can you post how you are calling &lt;A href="https://developer.authorize.net/api/reference/#payment-transactions-get-an-accept-payment-page" target="_self"&gt;Get an Accept Payment Page&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 13:55:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57120#M31856</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-03-03T13:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Unexpected error"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57121#M31857</link>
      <description>&lt;P&gt;This is on production with "test mode" turned on. The same code works fine on a sandbox account. Here is a sample of how it's being used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;$request = new AnetAPI\GetHostedPaymentPageRequest();&lt;BR /&gt;&lt;BR /&gt;$merchantAuthentication = new AnetAPI\MerchantAuthenticationType();&lt;BR /&gt;$merchantAuthentication-&amp;gt;setName($apiLoginId);&lt;BR /&gt;$merchantAuthentication-&amp;gt;setTransactionKey($transactionKey);&lt;BR /&gt;$request-&amp;gt;setMerchantAuthentication($merchantAuthentication);&lt;BR /&gt;&lt;BR /&gt;$transactionRequest = new AnetAPI\TransactionRequestType();&lt;BR /&gt;$transactionRequest-&amp;gt;setTransactionType('authCaptureTransaction');&lt;BR /&gt;$transactionRequest-&amp;gt;setAmount($amount);&lt;BR /&gt;&lt;BR /&gt;$orderType = new AnetAPI\OrderType();&lt;BR /&gt;$orderType-&amp;gt;setInvoiceNumber($invoiceNumber);&lt;BR /&gt;$transactionRequest-&amp;gt;setOrder($orderType);&lt;BR /&gt;&lt;BR /&gt;$request-&amp;gt;setTransactionRequest($transactionRequest);&lt;BR /&gt;&lt;BR /&gt;$settingObj = new AnetAPI\SettingType();&lt;BR /&gt;$settingObj-&amp;gt;setSettingName('hostedPaymentReturnOptions');&lt;BR /&gt;$value = json_encode(['url' =&amp;gt; $processLink, 'cancelUrl' =&amp;gt; $cancelLink], JSON_UNESCAPED_SLASHES);&lt;BR /&gt;$settingObj-&amp;gt;setSettingValue($value);&lt;BR /&gt;$request-&amp;gt;addToHostedPaymentSettings($settingObj);&lt;BR /&gt;&lt;BR /&gt;$controller = new AnetController\GetHostedPaymentPageController($request);&lt;BR /&gt;$response = $controller-&amp;gt;executeWithApiResponse($this-&amp;gt;environment);&lt;BR /&gt;&lt;BR /&gt;$token = $response-&amp;gt;getToken();&lt;BR /&gt;&lt;BR /&gt;return "&lt;BR /&gt;&amp;lt;form method=\"post\" action=\"&lt;A href="https://accept.authorize.net/payment/payment\" target="_blank"&gt;https://accept.authorize.net/payment/payment\&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=\"hidden\" name=\"token\" value=\"$token\" /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;lt;input type=\"submit\" /&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;BR /&gt;";&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 14:34:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57121#M31857</guid>
      <dc:creator>aschuck</dc:creator>
      <dc:date>2017-03-03T14:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Unexpected error"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57123#M31858</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21319"&gt;@aschuck&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect the issue is attempting a transaction while in Test Mode. &amp;nbsp;Test Mode instructs the gateway to only validate credentials, it does not actually process the transaction, nothing is stored at the gateway and a transaction ID is always zero.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you try this in live mode? &amp;nbsp;Make sure you void the transaction if production.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you prefer, try the same conditions in the sandbox using&amp;nbsp;test mode to see if you get similar results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Either way let us know the results so we can report the issue to product development.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Fri, 03 Mar 2017 14:44:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57123#M31858</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-03-03T14:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Unexpected error"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57859#M32545</link>
      <description>&lt;P&gt;same issue happends with me.. too.. in sandbox.. its working fine.. when we use live api loginid and transaction key then it throw error&lt;BR /&gt;Finger Print value is not valid.&lt;BR /&gt;&lt;BR /&gt;i have tried with production live mode and test mode.. i have checked every setting on authorize.net gateway setting.. i dont find anything wrong or missing in setting but its not solve yet.. i have tried several way..&lt;BR /&gt;ACCESS hosted method i am using.. and what ever parameter is mentioned in document which i have passed&lt;BR /&gt;&lt;BR /&gt;and get token correctly and then hosted form appear. then enter credit card information and all then press Pay button then its thorws error&lt;BR /&gt;Finger Print value is not valid.&lt;BR /&gt;&lt;BR /&gt;not sure what to do? any guideance or help ...&lt;BR /&gt;&lt;BR /&gt;please .. i have spent a lot of time on this.. its wierd issue.. not much help available on googling too about this issue&lt;BR /&gt;&lt;BR /&gt;thanks in adavance.&lt;BR /&gt;&lt;BR /&gt;VJ&lt;/P&gt;</description>
      <pubDate>Sat, 29 Apr 2017 06:29:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57859#M32545</guid>
      <dc:creator>Appliquertech</dc:creator>
      <dc:date>2017-04-29T06:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Unexpected error"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57868#M32553</link>
      <description>&lt;P&gt;I too am getting the error "Fingerprint value is invalid". &amp;nbsp;&lt;/P&gt;&lt;P&gt;It just recently started happening in the Production (non-test) environment.&lt;/P&gt;&lt;P&gt;Everything was working okay earlier in the month.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bert&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2017 02:30:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57868#M32553</guid>
      <dc:creator>bertq</dc:creator>
      <dc:date>2017-05-01T02:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57869#M32554</link>
      <description>&lt;P&gt;I tested this again in the SandBox and it worked fine.&lt;/P&gt;&lt;P&gt;Took the same code (changing the MERCHANT_TRANSACTION_KEY, MERCHANTE_LOGIN_ID) and the following lines of code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-------- snippet of output from diff command -----------------------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt; &amp;nbsp; &amp;nbsp; $response = $controller-&amp;gt;executeWithApiResponse( \net\authorize\api\constants\ANetEnvironment::SANDBOX);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;---&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;gt; &amp;nbsp; &amp;nbsp; $response = $controller-&amp;gt;ex&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ecuteWithApiResponse( \net\authorize\api\constants\ANetEnvironment::PRODUCTION);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;116c117&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt; &amp;lt;form id="send_token" action="&lt;A href="https://test.authorize.net/payment/payment" target="_blank"&gt;https://test.authorize.net/payment/payment&lt;/A&gt;" method="post" target="load_payment" &amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;---&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;gt; &amp;lt;form id="send_token" action="&lt;A href="https://secure.authorize.net/payment/payment" target="_blank"&gt;https://secure.authorize.net/payment/payment&lt;/A&gt;" method="post" target="load_payment" &amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;118c119&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;lt; &amp;lt;form id="send_token" action="&lt;A href="https://test.authorize.net/payment/payment" target="_blank"&gt;https://test.authorize.net/payment/payment&lt;/A&gt;" method="post" &amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;---&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;gt; &amp;lt;form id="send_token" action="&lt;A href="https://secure.authorize.net/payment/payment" target="_blank"&gt;https://secure.authorize.net/payment/payment&lt;/A&gt;" method="post" &amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-b&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;-------------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The production environment gives the error "Finger Print value is invalid".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I even logged onto Authorize.Net to get a new Merchant_Transaction_Key. &amp;nbsp;Same error.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Bert&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2017 03:40:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57869#M32554</guid>
      <dc:creator>bertq</dc:creator>
      <dc:date>2017-05-01T03:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57871#M32555</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21621"&gt;@bertq&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21614"&gt;@Appliquertech&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I've reported your issue to the product team for analysis.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'd recommend subscribing to this topic so that you'll be alerted via email if there are updates. To subscribe, click &lt;STRONG&gt;Topic Options&lt;/STRONG&gt; at the top of this thread and then select &lt;STRONG&gt;Subscribe&lt;/STRONG&gt;. You'll then receive an email once anyone replies to your post.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Richard&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2017 15:14:20 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57871#M32555</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-05-01T15:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57873#M32557</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21614"&gt;@Appliquertech&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For your production endpoint, could you try using&amp;nbsp;&lt;A href="https://accept.authorize.net/payment/payment" target="_blank"&gt;https://accept.authorize.net/payment/payment&lt;/A&gt; and see if you get better results?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2017 15:32:08 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57873#M32557</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-05-01T15:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57874#M32558</link>
      <description>&lt;P&gt;Using&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://accept.authorize.net/payment/payment" target="_blank" rel="nofollow noopener noreferrer"&gt;https://accept.authorize.net/payment/payment&lt;/A&gt;&amp;nbsp;gives the same error message.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bert&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2017 16:04:23 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57874#M32558</guid>
      <dc:creator>bertq</dc:creator>
      <dc:date>2017-05-01T16:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57876#M32559</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21614"&gt;@Appliquertech&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21621"&gt;@bertq&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We've identified the issue and they are working on a solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Mon, 01 May 2017 19:34:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57876#M32559</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-05-01T19:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57923#M32605</link>
      <description>&lt;P&gt;Richard,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there an estimated time of delivery of a working solution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Bert&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 21:11:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57923#M32605</guid>
      <dc:creator>bertq</dc:creator>
      <dc:date>2017-05-02T21:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57925#M32607</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21621"&gt;@bertq&lt;/a&gt;&amp;nbsp;I don't yet have details when the solution will be complete, but there are a lot of people working on the solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Tue, 02 May 2017 21:40:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/57925#M32607</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-05-02T21:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58074#M32746</link>
      <description>&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How close are we to getting a working solution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BertQ&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2017 14:08:24 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58074#M32746</guid>
      <dc:creator>bertq</dc:creator>
      <dc:date>2017-05-15T14:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58076#M32748</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21621"&gt;@bertq&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me check with product development and see what I can find out. &amp;nbsp;Last information I have is a solution was found and tested, but not yet deployed to production.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2017 14:24:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58076#M32748</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-05-15T14:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58078#M32750</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21319"&gt;@aschuck&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21621"&gt;@bertq&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/21614"&gt;@Appliquertech&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This issue should now be resolved. &amp;nbsp;Please let us know if you no longer see this issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Mon, 15 May 2017 15:51:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58078#M32750</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2017-05-15T15:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58091#M32763</link>
      <description>&lt;P&gt;Richard,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far it looks like it's working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BertQ&lt;/P&gt;</description>
      <pubDate>Tue, 16 May 2017 13:38:54 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58091#M32763</guid>
      <dc:creator>bertq</dc:creator>
      <dc:date>2017-05-16T13:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58260#M32925</link>
      <description>&lt;P&gt;We have had this issue intermitently on production environment not in test mode. Most the time we don't have it, but a couple times the token will get returned, the form will be displayed. Our team will then fill it out and submit it and get back this error.&lt;BR /&gt;&lt;BR /&gt;Does this error only happen when the authorize.net credentials are off? I want to make sure it isn't something we are doing wrong, but I can't find any details about the error.&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2017 15:22:57 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58260#M32925</guid>
      <dc:creator>MusicMonkey5555</dc:creator>
      <dc:date>2017-05-30T15:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58289#M32952</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/20360"&gt;@MusicMonkey5555&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There could be a few causes of this error. The most common is using a token more than once. Once a payment has been submitted, future uses of the token would bring up this error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To get more specific than that, we'd probably need a lot more details about what exactly is happening when the error appears, ideally with something reproducible.&lt;/P&gt;</description>
      <pubDate>Wed, 31 May 2017 21:35:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58289#M32952</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-05-31T21:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: hosted payment form "Finger Print value is invalid"</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58374#M33035</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I am getting the same issue when I perform the following steps:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Steps&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. &lt;/STRONG&gt;Use sandbox account credentials as well as sandbox url endpoint&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2.&amp;nbsp;&lt;/STRONG&gt;Request a token and get a hosted payment page&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3.&amp;nbsp;&lt;/STRONG&gt;Try to process a transaction which will return error code (e.g.&amp;nbsp;&lt;SPAN&gt;46282 as Zip Code)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;4.&amp;nbsp;&lt;/STRONG&gt;Correct the transaction (change zip code)'&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5. Finger Print value is invalid&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Might there be something that I am missing? Should we request a new token whenever the transaction has failed?&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;P&gt;Luis.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2017 16:55:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/hosted-payment-form-quot-Unexpected-error-quot/m-p/58374#M33035</guid>
      <dc:creator>luisbecerril</dc:creator>
      <dc:date>2017-06-06T16:55:14Z</dc:date>
    </item>
  </channel>
</rss>

