<?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 How to do Paypal integration through Authorize.net in c# web application? in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-do-Paypal-integration-through-Authorize-net-in-c-web/m-p/74092#M45995</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We are working in a web application with C# where we have incorporated&amp;nbsp;authorize.net for credit card payments and it is working as perfect as we want.&lt;/P&gt;&lt;P&gt;Now we need to implement Paypal integration through authorize.net in our website. For that we are following&amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sample-code-csharp&amp;nbsp;" target="_blank"&gt;https://github.com/AuthorizeNet/sample-code-csharp&amp;nbsp;&lt;/A&gt; to achive the same. Here we are following&amp;nbsp;PayPal Express Checkout &amp;gt;&amp;gt;&amp;nbsp;AUTHORIZATION AND CAPTURE process. Also we are following&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/index.html" target="_blank"&gt;https://developer.authorize.net/api/reference/index.html&lt;/A&gt; (AUTHORIZATION AND CAPTURE section)to achive the same.&lt;/P&gt;&lt;P&gt;But the problem we are facing that at the run time the application is not asking for Paypal Gateway. Means when the code is firing , it is completing the process successfully without asking the paypal payment gatway login or any card details. Now my questing is how it will be redirect to the paypal gateway so that user can login and can choose their card. and after every transaction it is giving us the response as"Need payer consent".&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to resolve the problem and how to redirected to Paypal gateway through authorize.net.&lt;/P&gt;</description>
    <pubDate>Tue, 24 Nov 2020 09:46:25 GMT</pubDate>
    <dc:creator>sriparna123</dc:creator>
    <dc:date>2020-11-24T09:46:25Z</dc:date>
    <item>
      <title>How to do Paypal integration through Authorize.net in c# web application?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-do-Paypal-integration-through-Authorize-net-in-c-web/m-p/74092#M45995</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;We are working in a web application with C# where we have incorporated&amp;nbsp;authorize.net for credit card payments and it is working as perfect as we want.&lt;/P&gt;&lt;P&gt;Now we need to implement Paypal integration through authorize.net in our website. For that we are following&amp;nbsp;&lt;A href="https://github.com/AuthorizeNet/sample-code-csharp&amp;nbsp;" target="_blank"&gt;https://github.com/AuthorizeNet/sample-code-csharp&amp;nbsp;&lt;/A&gt; to achive the same. Here we are following&amp;nbsp;PayPal Express Checkout &amp;gt;&amp;gt;&amp;nbsp;AUTHORIZATION AND CAPTURE process. Also we are following&amp;nbsp;&lt;A href="https://developer.authorize.net/api/reference/index.html" target="_blank"&gt;https://developer.authorize.net/api/reference/index.html&lt;/A&gt; (AUTHORIZATION AND CAPTURE section)to achive the same.&lt;/P&gt;&lt;P&gt;But the problem we are facing that at the run time the application is not asking for Paypal Gateway. Means when the code is firing , it is completing the process successfully without asking the paypal payment gatway login or any card details. Now my questing is how it will be redirect to the paypal gateway so that user can login and can choose their card. and after every transaction it is giving us the response as"Need payer consent".&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to resolve the problem and how to redirected to Paypal gateway through authorize.net.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2020 09:46:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-do-Paypal-integration-through-Authorize-net-in-c-web/m-p/74092#M45995</guid>
      <dc:creator>sriparna123</dc:creator>
      <dc:date>2020-11-24T09:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to do Paypal integration through Authorize.net in c# web application?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-do-Paypal-integration-through-Authorize-net-in-c-web/m-p/74364#M46200</link>
      <description>&lt;P&gt;While it used to be necessary with Authorize.net to do things, with PayPal it doesn't really require (for our purposes, your mileage may be different) from them other than that your stuff is set up. All it takes is to put some well-formatted information in the url:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="kwd"&gt;string&lt;SPAN class="pln"&gt; serverResponse&lt;SPAN class="pun"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="typ"&gt;WebResponse&lt;SPAN class="pln"&gt; wResp &lt;SPAN class="pun"&gt;=&lt;SPAN class="pln"&gt; request&lt;SPAN class="pun"&gt;.&lt;SPAN class="typ"&gt;GetResponse&lt;SPAN class="pun"&gt;( &lt;SPAN class="pun"&gt;);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="kwd"&gt;using &lt;SPAN class="pun"&gt;( &lt;SPAN class="typ"&gt;Stream&lt;SPAN class="pln"&gt; datStream &lt;SPAN class="pun"&gt;=&lt;SPAN class="pln"&gt; wResp&lt;SPAN class="pun"&gt;.&lt;SPAN class="typ"&gt;GetResponseStream&lt;SPAN class="pun"&gt;( &lt;SPAN class="pun"&gt;) &lt;SPAN class="pun"&gt;) &lt;SPAN class="kwd"&gt;using &lt;SPAN class="pun"&gt;( &lt;SPAN class="typ"&gt;StreamReader&lt;SPAN class="pln"&gt; datSReader &lt;SPAN class="pun"&gt;= &lt;SPAN class="kwd"&gt;new &lt;SPAN class="typ"&gt;StreamReader&lt;SPAN class="pun"&gt;(&lt;SPAN class="pln"&gt; datStream &lt;SPAN class="pun"&gt;) &lt;SPAN class="pun"&gt;)&lt;SPAN class="pln"&gt; serverResponse &lt;SPAN class="pun"&gt;=&lt;SPAN class="pln"&gt; datSReader&lt;SPAN class="pun"&gt;.&lt;SPAN class="typ"&gt;ReadToEnd&lt;SPAN class="pun"&gt;( &lt;SPAN class="pun"&gt;);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="kwd"&gt;this&lt;SPAN class="pun"&gt;.&lt;SPAN class="typ"&gt;Response &lt;SPAN class="pun"&gt;= &lt;SPAN class="typ"&gt;HttpUtility&lt;SPAN class="pun"&gt;.&lt;SPAN class="typ"&gt;ParseQueryString&lt;SPAN class="pun"&gt;(&lt;SPAN class="pln"&gt;serverResponse&lt;SPAN class="pun"&gt;);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="typ"&gt;IsSuccess &lt;SPAN class="pun"&gt;= &lt;SPAN class="kwd"&gt;this&lt;SPAN class="pun"&gt;.&lt;SPAN class="typ"&gt;Response&lt;SPAN class="pun"&gt;.&lt;SPAN class="typ"&gt;Get&lt;SPAN class="pun"&gt;( &lt;SPAN class="str"&gt;"RESULT" &lt;SPAN class="pun"&gt;) &lt;SPAN class="pun"&gt;== &lt;SPAN class="str"&gt;"0"&lt;SPAN class="pun"&gt;; &lt;SPAN class="kwd"&gt;if &lt;SPAN class="pun"&gt;( &lt;SPAN class="pun"&gt;!&lt;SPAN class="typ"&gt;IsSuccess &lt;SPAN class="pun"&gt;) &lt;SPAN class="typ"&gt;MessageBox&lt;SPAN class="pun"&gt;.&lt;SPAN class="typ"&gt;Show&lt;SPAN class="pun"&gt;( &lt;SPAN class="str"&gt;"RESULT != 0: RESULT = " &lt;SPAN class="pun"&gt;+ &lt;SPAN class="kwd"&gt;this&lt;SPAN class="pun"&gt;.&lt;SPAN class="typ"&gt;Respons&lt;FONT color="#000000"&gt;e&lt;/FONT&gt;&lt;SPAN class="pun"&gt;&lt;FONT color="#000000"&gt;.&lt;/FONT&gt;&lt;SPAN class="typ"&gt;&lt;FONT color="#000000"&gt;Get&lt;/FONT&gt;&lt;SPAN class="pun"&gt;&lt;FONT color="#008000"&gt;&lt;FONT color="#000000"&gt; Response.Get ("RESULT")); &lt;A href="https://thetermpapers.org/" target="_self"&gt;thetermpapers.org&lt;/A&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="kwd"&gt;return &lt;SPAN class="typ"&gt;IsSuccess&lt;SPAN class="pun"&gt;;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;This code, in its form before it was changed, came straight from the guys at PayPal and made it much easier to manage transactions through a windows form app.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Dec 2020 09:04:32 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-do-Paypal-integration-through-Authorize-net-in-c-web/m-p/74364#M46200</guid>
      <dc:creator>RyanHickers</dc:creator>
      <dc:date>2020-12-17T09:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to do Paypal integration through Authorize.net in c# web application?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-do-Paypal-integration-through-Authorize-net-in-c-web/m-p/74411#M46239</link>
      <description>&lt;P&gt;&lt;EM&gt;Payment&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;gateways in WooCommerce are class based and&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;can&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;be added ... that then redirects them to the&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;payment&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;processor on the gateway's own&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;website&lt;/EM&gt;&lt;SPAN&gt;. ...&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;Authorize&lt;/EM&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;EM&gt;net&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;DPM; iFrame based – This is when the gateway&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;payment&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;...&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;Payment&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;gateways should be created as additional plugins that hook&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;into&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;WooCommerce.&amp;nbsp;&lt;STRONG&gt;&lt;A title="Myhr Savers Login" href="https://myhr.onl/myhr-savers/" target="_self"&gt;Myhr Savers Login&lt;/A&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Dec 2020 07:07:59 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/How-to-do-Paypal-integration-through-Authorize-net-in-c-web/m-p/74411#M46239</guid>
      <dc:creator>pathonix12</dc:creator>
      <dc:date>2020-12-22T07:07:59Z</dc:date>
    </item>
  </channel>
</rss>

