<?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 Accept.js. But get E_WC_03 in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61168#M35658</link>
    <description>&lt;P&gt;Your Implementation looks good to me,&lt;/P&gt;&lt;P&gt;can you check your console also if its printing anything there?&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Jan 2018 18:42:47 GMT</pubDate>
    <dc:creator>Shoagraw</dc:creator>
    <dc:date>2018-01-10T18:42:47Z</dc:date>
    <item>
      <title>Trying to integrate Accept.js. But get E_WC_03</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61163#M35654</link>
      <description>&lt;P&gt;I am doing an integration with our own custom payment form. I have followed all the steps to include the library, for both sandbox and live, however in either of them I keep getting this response after executing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Accept.dispatchData(&lt;SPAN&gt;secureData&lt;/SPAN&gt;, &lt;SPAN&gt;responseHandler&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;Response:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{"messages":{"resultCode":"Error","message":[{"code":"E_WC_03","text":"Accept.js is not loaded correctly"}]}}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm using the correct API Login ID and Public Client Key, and included this library:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;script &lt;/SPAN&gt;&lt;SPAN&gt;type=&lt;/SPAN&gt;&lt;SPAN&gt;"text/javascript"&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;src=&lt;/SPAN&gt;&lt;SPAN&gt;"https://jstest.authorize.net/v1/Accept.js"&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;charset=&lt;/SPAN&gt;&lt;SPAN&gt;"utf-8"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;/&lt;/SPAN&gt;&lt;SPAN&gt;script&lt;/SPAN&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I get the same error when testing with the apropriate Live credentials and library.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What could be wrong?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For reference, I'm using this function implementation:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;function &lt;/SPAN&gt;&lt;SPAN&gt;sendPaymentDataToAnet&lt;/SPAN&gt;() {&lt;BR /&gt;    &lt;SPAN&gt;var &lt;/SPAN&gt;&lt;SPAN&gt;authData &lt;/SPAN&gt;= {};&lt;BR /&gt;    &lt;SPAN&gt;authData&lt;/SPAN&gt;.&lt;SPAN&gt;clientKey &lt;/SPAN&gt;= &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;{{ env(&lt;/SPAN&gt;&lt;SPAN&gt;'AUTHORIZE_CLIENT_KEY'&lt;/SPAN&gt;&lt;SPAN&gt;) }}&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;;&lt;BR /&gt;    &lt;SPAN&gt;authData&lt;/SPAN&gt;.&lt;SPAN&gt;apiLoginID &lt;/SPAN&gt;= &lt;SPAN&gt;"&lt;/SPAN&gt;&lt;SPAN&gt;{{ env(&lt;/SPAN&gt;&lt;SPAN&gt;'AUTHORIZE_API_KEY'&lt;/SPAN&gt;&lt;SPAN&gt;) }}&lt;/SPAN&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;;&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;var &lt;/SPAN&gt;&lt;SPAN&gt;cardData &lt;/SPAN&gt;= {};&lt;BR /&gt;    &lt;SPAN&gt;cardData&lt;/SPAN&gt;.&lt;SPAN&gt;cardNumber &lt;/SPAN&gt;= &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;{{ &lt;/SPAN&gt;&lt;SPAN&gt;$cc_number &lt;/SPAN&gt;&lt;SPAN&gt;}}&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;;&lt;BR /&gt;    &lt;SPAN&gt;cardData&lt;/SPAN&gt;.&lt;SPAN&gt;month &lt;/SPAN&gt;= &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;{{ &lt;/SPAN&gt;&lt;SPAN&gt;$expmonth &lt;/SPAN&gt;&lt;SPAN&gt;}}&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;;&lt;BR /&gt;    &lt;SPAN&gt;cardData&lt;/SPAN&gt;.&lt;SPAN&gt;year &lt;/SPAN&gt;= &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;{{ &lt;/SPAN&gt;&lt;SPAN&gt;$expyear &lt;/SPAN&gt;&lt;SPAN&gt;}}&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;;&lt;BR /&gt;    &lt;SPAN&gt;cardData&lt;/SPAN&gt;.&lt;SPAN&gt;cardCode &lt;/SPAN&gt;= &lt;SPAN&gt;'&lt;/SPAN&gt;&lt;SPAN&gt;{{ &lt;/SPAN&gt;&lt;SPAN&gt;$cvc &lt;/SPAN&gt;&lt;SPAN&gt;}}&lt;/SPAN&gt;&lt;SPAN&gt;'&lt;/SPAN&gt;;&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;var &lt;/SPAN&gt;&lt;SPAN&gt;secureData &lt;/SPAN&gt;= {};&lt;BR /&gt;    &lt;SPAN&gt;secureData&lt;/SPAN&gt;.&lt;SPAN&gt;authData &lt;/SPAN&gt;= &lt;SPAN&gt;authData&lt;/SPAN&gt;;&lt;BR /&gt;    &lt;SPAN&gt;secureData&lt;/SPAN&gt;.&lt;SPAN&gt;cardData &lt;/SPAN&gt;= &lt;SPAN&gt;cardData&lt;/SPAN&gt;;&lt;BR /&gt;&lt;BR /&gt;    Accept.dispatchData(&lt;SPAN&gt;secureData&lt;/SPAN&gt;, &lt;SPAN&gt;responseHandler&lt;/SPAN&gt;);&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 16:48:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61163#M35654</guid>
      <dc:creator>angel</dc:creator>
      <dc:date>2018-01-10T16:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to integrate Accept.js. But get E_WC_03</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61168#M35658</link>
      <description>&lt;P&gt;Your Implementation looks good to me,&lt;/P&gt;&lt;P&gt;can you check your console also if its printing anything there?&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 18:42:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61168#M35658</guid>
      <dc:creator>Shoagraw</dc:creator>
      <dc:date>2018-01-10T18:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to integrate Accept.js. But get E_WC_03</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61173#M35663</link>
      <description>&lt;P&gt;It says:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Accept.js is not loaded correctly&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 20:30:49 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61173#M35663</guid>
      <dc:creator>angel</dc:creator>
      <dc:date>2018-01-10T20:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to integrate Accept.js. But get E_WC_03</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61175#M35665</link>
      <description>&lt;P&gt;Is this because of Authorize.net CDN issue?&lt;/P&gt;&lt;P&gt;There are many merchants (their developers) having the same issue.&lt;/P&gt;&lt;P&gt;We can't even proceed further because the initial request can't be made&lt;/P&gt;&lt;P&gt;This must be Authorize.net issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am asking to the Administrator of this community. What is the issue?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Administrator"&gt;&lt;SPAN class="login-bold"&gt;Urgent reply from Administrator please!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Administrator"&gt;&lt;SPAN class="login-bold"&gt;It is indeed a shame that a famous US payment gateway / processor having such issues on API integration.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2018 21:10:37 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61175#M35665</guid>
      <dc:creator>seocim</dc:creator>
      <dc:date>2018-01-10T21:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to integrate Accept.js. But get E_WC_03</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61184#M35674</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/23074"&gt;@seocim&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/22768"&gt;@Shoagraw&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are not aware of any such issues with Accept.js currently .&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;if you are still facing the issue please reach out to the support team 1&lt;SPAN&gt;.877.447.3938 to open a support ticket for it .&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jan 2018 07:22:51 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/61184#M35674</guid>
      <dc:creator>Anurag</dc:creator>
      <dc:date>2018-01-11T07:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Trying to integrate Accept.js. But get E_WC_03</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/65886#M39493</link>
      <description>&lt;P&gt;We also have quite some compaints of E_WC_03 error.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope to get help from admin.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 17:27:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Trying-to-integrate-Accept-js-But-get-E-WC-03/m-p/65886#M39493</guid>
      <dc:creator>liyan</dc:creator>
      <dc:date>2019-01-18T17:27:10Z</dc:date>
    </item>
  </channel>
</rss>

