<?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: Authorize Continue Button Issue in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59642#M34221</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Aaron,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Thanks for the suggestion, As you suggested i tried with new&amp;nbsp;URL(&lt;STRONG&gt;&lt;A href="https://test.authorize.net/customer/" target="_blank"&gt;https://test.authorize.net/customer/&lt;/A&gt;&lt;/STRONG&gt;) but for this also i am not able get&amp;nbsp;the CONTINUE after saving the Credit card details&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have attached the Image for the reference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="Libraries\Pictures\Continue Button Issue.JPG" border="0" alt="Continue Button Issue" width="1060" height="513" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kiran B&lt;/P&gt;</description>
    <pubDate>Fri, 01 Sep 2017 07:28:07 GMT</pubDate>
    <dc:creator>bkiran26</dc:creator>
    <dc:date>2017-09-01T07:28:07Z</dc:date>
    <item>
      <title>Authorize Continue Button Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59426#M34011</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Aaron Wright&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have written&amp;nbsp;a code for credit card registration through Authorize.net using Rails Framework. Below is the process I followed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Generated the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;CustomerProfileID&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;from Authorize.net&lt;BR /&gt;2. Using&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;CustomerProfileID&lt;/STRONG&gt;, generated a Token to load&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;"Customer hosted Form"&lt;/STRONG&gt;. While generating a Token, Sending "&lt;STRONG&gt;hostedProfileReturnUrl&lt;/STRONG&gt;"&lt;BR /&gt;3. After loading the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;"Customer hosted form"&lt;/STRONG&gt;, registering the card details through Authorize.net&lt;BR /&gt;4. After registration, on click of&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;"SAVE"&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;button, credit card details are getting saved into Authorize.Net. After this, we should be directed to a screen with '&lt;STRONG&gt;CONTINUE&lt;/STRONG&gt;" button which is currently not getting shown.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because of which we are not able to come back to our appplication from Authorize.Net.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the code written for redirecting to my application. Could you please help me on fixing this issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Code:&lt;/U&gt;&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;transaction = Transaction.new('api_login_id', 'api_transaction_key', :gateway =&amp;gt; :sandbox, :verify_ssl =&amp;gt; true)&lt;BR /&gt;setting = SettingType.new&lt;BR /&gt;setting.settingName = SettingNameEnum::HostedProfileReturnUrl&lt;BR /&gt;setting.settingValue = "&lt;A href="https://returnurl.com/return/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://returnurl.com/return/&lt;/A&gt;"&lt;BR /&gt;setting.settingName = SettingNameEnum::HostedProfileReturnUrlText&lt;BR /&gt;setting.settingValue = "Continue"&lt;BR /&gt;setting.settingName = SettingNameEnum::HostedProfilePageBorderVisible&lt;BR /&gt;setting.settingValue = "true"&lt;BR /&gt;settings = Settings.new([setting])&lt;BR /&gt;request = GetHostedProfilePageRequest.new&lt;BR /&gt;request.customerProfileId = customerProfileId&lt;BR /&gt;request.refId = rs_type&lt;BR /&gt;request.hostedProfileSettings = settings&lt;BR /&gt;response = transaction.get_hosted_profile_page(request)&lt;BR /&gt;if response.messages.resultCode == MessageTypeEnum::Ok&lt;BR /&gt;puts "#{response.messages.messages[0].code}"&lt;BR /&gt;puts "#{response.messages.messages[0].text}"&lt;BR /&gt;puts "#{response.token}"&lt;BR /&gt;else&lt;BR /&gt;puts "#{response.messages.messages[0].code}"&lt;BR /&gt;puts "#{response.messages.messages[0].text}"&lt;BR /&gt;raise "Failed to get hosted profile page with customer profile id #{request.customerProfileId}"&lt;BR /&gt;end&lt;BR /&gt;end&lt;BR /&gt;if __FILE__ == $0&lt;BR /&gt;get_hosted_profile_page()&lt;BR /&gt;end&lt;/P&gt;</description>
      <pubDate>Thu, 17 Aug 2017 12:00:16 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59426#M34011</guid>
      <dc:creator>bkiran26</dc:creator>
      <dc:date>2017-08-17T12:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize Continue Button Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59551#M34134</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22050"&gt;@bkiran26&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you loading the form in an IFrame? What URL are you posting the token to?&lt;/P&gt;</description>
      <pubDate>Sat, 26 Aug 2017 00:11:43 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59551#M34134</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-08-26T00:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize Continue Button Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59622#M34201</link>
      <description>&lt;P&gt;Hi Aaron,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, I can able to load the form in IFrame, And below the URL i am posting along with Token&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;testauthorizenet/profile/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;and the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;hostedProfileReturnUrl&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;IP&amp;gt;:&amp;lt;port&amp;gt;/pp_change_payment_method/ppChangePaymentMethodPage&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Kiran B&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 07:38:41 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59622#M34201</guid>
      <dc:creator>bkiran26</dc:creator>
      <dc:date>2017-08-31T07:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize Continue Button Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59630#M34209</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22050"&gt;@bkiran26&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looks like you're using an older URL to post to. Can you try the newer URLs as detailed &lt;A href="https://developer.authorize.net/api/upgrade_guide/#hosted_cim" target="_blank"&gt;here&lt;/A&gt;?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Aug 2017 17:11:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59630#M34209</guid>
      <dc:creator>Aaron</dc:creator>
      <dc:date>2017-08-31T17:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Authorize Continue Button Issue</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59642#M34221</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Aaron,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Thanks for the suggestion, As you suggested i tried with new&amp;nbsp;URL(&lt;STRONG&gt;&lt;A href="https://test.authorize.net/customer/" target="_blank"&gt;https://test.authorize.net/customer/&lt;/A&gt;&lt;/STRONG&gt;) but for this also i am not able get&amp;nbsp;the CONTINUE after saving the Credit card details&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have attached the Image for the reference.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="Libraries\Pictures\Continue Button Issue.JPG" border="0" alt="Continue Button Issue" width="1060" height="513" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Kiran B&lt;/P&gt;</description>
      <pubDate>Fri, 01 Sep 2017 07:28:07 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Authorize-Continue-Button-Issue/m-p/59642#M34221</guid>
      <dc:creator>bkiran26</dc:creator>
      <dc:date>2017-09-01T07:28:07Z</dc:date>
    </item>
  </channel>
</rss>

