<?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: AIM - PHP - Thank You Page Help in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-PHP-Thank-You-Page-Help/m-p/39680#M21611</link>
    <description>&lt;P&gt;&amp;lt;&lt;FONT color="#FF0000"&gt;form&lt;/FONT&gt; action="&lt;A href="https://test.authorize.net/gateway/transact.dll%22" target="_blank" rel="nofollow"&gt;https://test.authorize.net/gateway/transact.dll"&lt;/A&gt; method="&lt;FONT color="#FF0000"&gt;post&lt;/FONT&gt;" name="donations" id="donations"&amp;gt;&lt;/P&gt;&lt;P&gt;That a form post. Not curl. so you are using DPM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DO NOT post your "x_tran_key", that is like a password to your loginID. Instead DPM and SIM use x_fp_hash&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DPM doc is here &lt;A href="http://developer.authorize.net/api/dpm/" target="_blank"&gt;http://developer.authorize.net/api/dpm/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or you could use the &lt;A href="http://developer.authorize.net/downloads/samplecode/" target="_blank"&gt;http://developer.authorize.net/downloads/samplecode/&lt;/A&gt; for AIM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Mar 2014 12:14:53 GMT</pubDate>
    <dc:creator>RaynorC1emen7</dc:creator>
    <dc:date>2014-03-07T12:14:53Z</dc:date>
    <item>
      <title>AIM - PHP - Thank You Page Help</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-PHP-Thank-You-Page-Help/m-p/39658#M21600</link>
      <description>&lt;P&gt;I can't seem to find an answer to my problem and I'm starting to think I'm making this way harder than it needs to be. I have a simple html form on a php page on a site with an SSL certificate installed. My client wants people to be able to make a donation from the form and answer a few questions about why they're donating. I have everything working, the form sends out, I get an email reciept (as the donor), I get an email reciept (as the merchant) but after I fill out the form I get a white page with the delimited response on it. What I really what is to send the user to a thank you page. I don't need any info echoed back to them about their transaction. Just a thanks and a message about getting an email reciept. I keep playing with the Response/Reciept URL setting in my account settings and trying blocks of code I found here and there from other peoples posts online but I'm just not getting the right combo. Am I using the wrong API? What am I doing wrong?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2014 20:15:18 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-PHP-Thank-You-Page-Help/m-p/39658#M21600</guid>
      <dc:creator>jasonrit22</dc:creator>
      <dc:date>2014-03-06T20:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: AIM - PHP - Thank You Page Help</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-PHP-Thank-You-Page-Help/m-p/39660#M21601</link>
      <description>&lt;P&gt;Response/Reciept URL are only use in DPM and SIM.&lt;/P&gt;&lt;P&gt;For AIM, the request and response run thru your website.&lt;/P&gt;&lt;P&gt;Are you form posting(SIM, DPM) to authorize.net or curl(AIM)?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2014 20:21:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-PHP-Thank-You-Page-Help/m-p/39660#M21601</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-03-06T20:21:14Z</dc:date>
    </item>
    <item>
      <title>Re: AIM - PHP - Thank You Page Help</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-PHP-Thank-You-Page-Help/m-p/39676#M21609</link>
      <description>&lt;P&gt;I belive I'm using curl(AIM). Maybe not correctly it seems... Here's what I have for my form action:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;form action="&lt;A target="_blank" href="https://test.authorize.net/gateway/transact.dll&amp;quot;"&gt;https://test.authorize.net/gateway/transact.dll"&lt;/A&gt; method="post" name="donations" id="donations"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I have all the fields for the person's info, credit card info, and I have a couple hidden fields at the end of the form:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;input name="x_login" type="hidden" id="x_login" value="***" /&amp;gt;&lt;BR /&gt;&amp;lt;input name="x_tran_key" type="hidden" id="x_tran_key" value="***" /&amp;gt;&lt;BR /&gt;&amp;lt;input name="x_relay_response" type="hidden" id="x_relay_response" value="FALSE" /&amp;gt;&lt;BR /&gt;&amp;lt;input name="x_delim_data" type="hidden" id="x_delim_data" value="TRUE" /&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's about it. It seems to process. I just can't get the Thank You page after the form is processed and accepted. Only the delimited info.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help. I've been working on this on and off for days. I'm just going about it the wrong way I guess.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Mar 2014 02:24:19 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-PHP-Thank-You-Page-Help/m-p/39676#M21609</guid>
      <dc:creator>jasonrit22</dc:creator>
      <dc:date>2014-03-07T02:24:19Z</dc:date>
    </item>
    <item>
      <title>Re: AIM - PHP - Thank You Page Help</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-PHP-Thank-You-Page-Help/m-p/39680#M21611</link>
      <description>&lt;P&gt;&amp;lt;&lt;FONT color="#FF0000"&gt;form&lt;/FONT&gt; action="&lt;A href="https://test.authorize.net/gateway/transact.dll%22" target="_blank" rel="nofollow"&gt;https://test.authorize.net/gateway/transact.dll"&lt;/A&gt; method="&lt;FONT color="#FF0000"&gt;post&lt;/FONT&gt;" name="donations" id="donations"&amp;gt;&lt;/P&gt;&lt;P&gt;That a form post. Not curl. so you are using DPM.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DO NOT post your "x_tran_key", that is like a password to your loginID. Instead DPM and SIM use x_fp_hash&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DPM doc is here &lt;A href="http://developer.authorize.net/api/dpm/" target="_blank"&gt;http://developer.authorize.net/api/dpm/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or you could use the &lt;A href="http://developer.authorize.net/downloads/samplecode/" target="_blank"&gt;http://developer.authorize.net/downloads/samplecode/&lt;/A&gt; for AIM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Mar 2014 12:14:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/AIM-PHP-Thank-You-Page-Help/m-p/39680#M21611</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-03-07T12:14:53Z</dc:date>
    </item>
  </channel>
</rss>

