<?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: Trying to integrate Authorize.net | Error (99) in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Authorize-net-Error-99/m-p/24323#M13045</link>
    <description>&lt;P&gt;The problem is here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$transaction_key = 'TEST_TRANSACTION_KEY'; // This is filled in correctly on my end
&lt;STRONG&gt;$amount = '';&lt;/STRONG&gt;
$fp_timestamp = time();&lt;/PRE&gt;&lt;P&gt;The amount you're putting into the fingerprint doesn't match what you're passing as an amount in your form. Fix that and the fingerprint ought to work.&lt;/P&gt;</description>
    <pubDate>Mon, 12 Mar 2012 20:07:36 GMT</pubDate>
    <dc:creator>TJPride</dc:creator>
    <dc:date>2012-03-12T20:07:36Z</dc:date>
    <item>
      <title>Trying to integrate Authorize.net | Error (99)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Authorize-net-Error-99/m-p/24317#M13042</link>
      <description>&lt;P&gt;Greetings!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ok so I'm trying to implement this for a client but I seem to be running into some issues, mind you this is my first time using Authorize.net.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sorceservices.com/Services-buy-it-now.php" target="_blank"&gt;Sorce Services&lt;/A&gt;&amp;nbsp;is where I'm trying to implement it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-- Below is the code I'm using --&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;//++&lt;BR /&gt;// Authorize.NET&lt;BR /&gt;//++&lt;/P&gt;&lt;P&gt;require_once 'anet_php_sdk/AuthorizeNet.php';&lt;/P&gt;&lt;P&gt;$api_login_id = 'TEST_API_ID'; // This is filled in correctly on my end&lt;BR /&gt;$transaction_key = 'TEST_TRANSACTION_KEY'; // This is filled in correctly on my end&lt;BR /&gt;$amount = '';&lt;BR /&gt;$fp_timestamp = time();&lt;BR /&gt;$fp_sequence = "123" . time(); // Enter an invoice or other unique number.&lt;BR /&gt;$fingerprint = AuthorizeNetSIM_Form::getFingerprint($api_login_id,&lt;BR /&gt;$transaction_key, $amount, $fp_sequence, $fp_timestamp)&lt;/P&gt;&lt;P&gt;?&amp;gt;&lt;BR /&gt;&amp;lt;div id="content"&amp;gt;&lt;BR /&gt;&amp;lt;h3&amp;gt;Services&amp;lt;/h3&amp;gt;&lt;BR /&gt;Prices include ALL fees. (Local Trucking and Disposal)&lt;BR /&gt;&amp;lt;br/&amp;gt;&lt;BR /&gt;&amp;lt;h4&amp;gt;Roll Offs&amp;lt;/h4&amp;gt;&lt;BR /&gt;&amp;lt;table class="servicestable"&amp;gt;&lt;BR /&gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;SIZE&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th&amp;gt;LENGTH&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th&amp;gt;WIDTH&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th&amp;gt;HEIGHT&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th&amp;gt;WW WEIGHT&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th&amp;gt;WW PRICE*&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th&amp;gt;PRICE FOR 10 TON&amp;lt;/th&amp;gt;&lt;BR /&gt;&amp;lt;th&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&lt;BR /&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;12 yd&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;20 ft&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;8 ft&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;2&amp;amp;frac12; ft&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;3 Ton&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;$295.00&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;$330.00&amp;lt;/td&amp;gt;&lt;BR /&gt;&amp;lt;td&amp;gt;&amp;lt;form method='post' action="&lt;A href="https://test.authorize.net/gateway/transact.dll" target="_blank"&gt;https://test.authorize.net/gateway/transact.dll&lt;/A&gt;"&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_login" value="&amp;lt;?php echo $api_login_id?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_fp_hash" value="&amp;lt;?php echo $fingerprint?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_amount" value="330.00" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_fp_timestamp" value="&amp;lt;?php echo $fp_timestamp?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_fp_sequence" value="&amp;lt;?php echo $fp_sequence?&amp;gt;" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_version" value="3.1"&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_show_form" value="payment_form"&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_test_request" value="false" /&amp;gt;&lt;BR /&gt;&amp;lt;input type='hidden' name="x_method" value="cc"&amp;gt;&lt;BR /&gt;&amp;lt;input type='image' src="images/buyNow.gif" border="0" name="submit" type="submit" height="17" width="56" title="Buy Now" alt="Buy Now" class="buy_now"&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&lt;BR /&gt;&amp;lt;/form&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I have a few questions, is this a good way of going about it since I have to have multiple prices? And secondly what is wrong what is throwing me a (99) error?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate all the help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Randy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2012 19:58:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Authorize-net-Error-99/m-p/24317#M13042</guid>
      <dc:creator>Randy53215</dc:creator>
      <dc:date>2012-03-12T19:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to integrate Authorize.net | Error (99)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Authorize-net-Error-99/m-p/24323#M13045</link>
      <description>&lt;P&gt;The problem is here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;$transaction_key = 'TEST_TRANSACTION_KEY'; // This is filled in correctly on my end
&lt;STRONG&gt;$amount = '';&lt;/STRONG&gt;
$fp_timestamp = time();&lt;/PRE&gt;&lt;P&gt;The amount you're putting into the fingerprint doesn't match what you're passing as an amount in your form. Fix that and the fingerprint ought to work.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2012 20:07:36 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Authorize-net-Error-99/m-p/24323#M13045</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-03-12T20:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to integrate Authorize.net | Error (99)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Authorize-net-Error-99/m-p/24325#M13046</link>
      <description>&lt;P&gt;I set the variable like that because I have multiple prices I have to accept depending on the dumpster they need. If I declair an amount there it would be one set price. Easy way I could integrate it with support for multiple prices?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate the quick response TJ.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2012 20:11:02 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Authorize-net-Error-99/m-p/24325#M13046</guid>
      <dc:creator>Randy53215</dc:creator>
      <dc:date>2012-03-12T20:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to integrate Authorize.net | Error (99)</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Authorize-net-Error-99/m-p/24331#M13049</link>
      <description>&lt;P&gt;Yes. You would submit just the product information (name, price, quantity, if applicable) from this page to a second page, which would generate the Authorize.net form details and auto-submit using this in the body tag of the page:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;body onload="document.&lt;STRONG&gt;myformname&lt;/STRONG&gt;.submit();"&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Where myformname is the name of your form.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Mar 2012 21:12:38 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Authorize-net-Error-99/m-p/24331#M13049</guid>
      <dc:creator>TJPride</dc:creator>
      <dc:date>2012-03-12T21:12:38Z</dc:date>
    </item>
  </channel>
</rss>

