<?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: Accept Hosted Redirect Method - Transaction Status Notifications in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66966#M40456</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yep - Accept Hosted will be replacing our old SIM integration.&amp;nbsp; And yes, it was triggered by the mass hysteria over MD5 to sha512 and the fact that Authorize.net keeps telling all of our clients that SIM is being deprecated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From what I'm seeing, I think the old SIM hosted payment form looked a lot better.&amp;nbsp; I haven't had a chance to look at the the options for customizing the Accept Hosted payment form yet (programmatically) but I'm hoping there's ways to improve it.&amp;nbsp; Currently I think it looks like crap and I know my customers aren't going to like it in it's current state.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Mar 2019 18:30:08 GMT</pubDate>
    <dc:creator>redcart</dc:creator>
    <dc:date>2019-03-15T18:30:08Z</dc:date>
    <item>
      <title>Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66924#M40417</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm in the process of converting from the old SIM integration method to the new Accept Hosted Redirect method where the payment form is hosted on Authorize.net's web site. I have everything working to the point where the customer is able to enter their credit card and they can click to pay.&amp;nbsp; However, I'm currently unable to figure out how to have Authorize.net communicate the transaction status back to my application so that the app can process the order accordingly.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I saw some other threads where people suggested using web hooks to accomplish this, but I currently don't see any way to link the transaction to a specific order id in our application.&amp;nbsp; Questions:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) Is there a way to have Authorize.net simply send a notification back to my application when the transaction is processed successfully or declined without depending on the user to click the "Continue" button?&amp;nbsp; If so, how?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) If the only option is to use the web hooks api, how specifically can I use that to link back to original transaction to match it up with the original order in our application?&amp;nbsp; Is there a way that I can pass our unique order id with the transaction so that it's passed back via the web hook?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tommy&lt;/P&gt;</description>
      <pubDate>Wed, 13 Mar 2019 20:59:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66924#M40417</guid>
      <dc:creator>redcart</dc:creator>
      <dc:date>2019-03-13T20:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66947#M40439</link>
      <description>&lt;P&gt;hey&amp;nbsp;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/28053"&gt;@redcart&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Yes, but a qualified yes. The answer is webhooks but it will not notify you if a transaction is declined, only if successful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Pass your internal order number as the invoice number in the API call. Then on your webhooks endpoint have a getTransactionDetails method call script that retrieves the invoice number and updates the appropriate record in your db. This solves the qualification on item 1. of your question, because you know which orders were declined (or where the customer abandoned the payment page) by the fact the records are not updated as paid. As for the only method, the iframe integration will return transaction information. I still recommend webhooks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Click on my name and skim through my ever expanding collection of posts and you will find some that detail how to use webhooks.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 00:46:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66947#M40439</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2019-03-15T00:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66955#M40447</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the replly!&amp;nbsp; I started going down the path of using web hooks and I have it mostly working if I create the web hook manually in the UI.&amp;nbsp; But I'm running into a bit of a road block when trying to create the web hook programmatically through the rest api. When I try to make a php curl post to create a new web hook, it simply returns the existing web hook that was already created via the UI. I'm using vanilla php curl instead of any specific Authnet php library.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have an example code to create a new web hook using vanilla curl?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Endpoint:&lt;/P&gt;&lt;PRE&gt;https://apitest.authorize.net/rest/v1/webhooks&lt;/PRE&gt;&lt;P&gt;Method:&lt;/P&gt;&lt;PRE&gt;POST&lt;/PRE&gt;&lt;P&gt;Encoded JSON data vars:&lt;/P&gt;&lt;PRE&gt;{"name":"Test Payment Notifications","url":"https:\/\/the-url.php","eventTypes":["net.authorize.payment.authorization.created","net.authorize.payment.capture.created","net.authorize.payment.authcapture.created","net.authorize.payment.priorAuthCapture.created","net.authorize.payment.refund.created","net.authorize.payment.void.created"],"status":"active"} &lt;/PRE&gt;&lt;P&gt;When posting it just returns the list of web hooks as if I'm calling GET instead of POST. Any help would be appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 05:51:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66955#M40447</guid>
      <dc:creator>redcart</dc:creator>
      <dc:date>2019-03-15T05:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66960#M40450</link>
      <description>So there are a few things here. One is you don’t want to be making manual calls to get transaction data. You want it to be automated. Those HTTP requests are for manual calls. They have their use but aren’t what you want to do to get your transactions updated.&lt;BR /&gt;&lt;BR /&gt;To automate, you set up an endpoint in the interface (can also do that with curl but for me it’s convenient to just use the interface. Less debugging if things don’t work). Then on your endpoint you put in a programming script to process the transaction data that hits it. Then every time an order is placed your endpoint will be sent a webhook, your script will execute, and the order will he updated in your records.&lt;BR /&gt;&lt;BR /&gt;I have some curl code I use occasionally but am getting breakfast and don’t have it in front of me at the moment. When I’ve got some downtime at home (I’m slammed and don’t have much) I will shoot it to you. For now I would set up your endpoint and start running test transactions. Set your endpoint to active and have your script capture the data being sent. Build it one step at a time. First step is to capture the payload that hits your endpoint. Next step is to extract what you need. You may only need to extract the invoice number (I think this is in the payload). I get the transaction Id so that I can pull the entire transaction with an API call. There are endless ways to extract data so just use what works for you. Once you’ve got it down getting what you need from the payload, then you build your record updating component of the script. The final step after that works is to implement the sha512 hash verification, so that when you’re live your endpoint only acts on legitimate information.</description>
      <pubDate>Fri, 15 Mar 2019 14:09:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66960#M40450</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2019-03-15T14:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66961#M40451</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Renaissance!&amp;nbsp; But I think I'm further along than you think I am.&amp;nbsp; I already have the Accept Hosted integration working and am able to grab data off the payload from the web hook on my server to grab the transaction data.&amp;nbsp; All that good.&amp;nbsp; The problem I'm trying to solve is creating the web hook through the API instead of manually through the Authnet UI. The reason why I have to do this is because my application is already being used on thousands of sites using the SIM integration method and I don't want to have to force all customers to have to go into their Authorize.net back-ends and manually create and manage web hooks on their own.&amp;nbsp; I want the application to verify that the proper web hook already exists on the account and if it doesn't, create it programmatically.&amp;nbsp; I'm already getting a list of web hooks through the API and that part works great.&amp;nbsp; The only thing I can't seem to get to work is creating the webhook. For some reason, my POST for the create returns the same thing as if I was doing a GET to the same api endpoint:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;POST https://apitest.authorize.net/rest/v1/webhooks&lt;/PRE&gt;&lt;P&gt;This is why I think I just have a curl opt setting wrong with my curl code. Either that or the documentation for the Create Webhook endpoint isn't correct.&amp;nbsp; Here's a list of the curl settings I'm currently using:&lt;/P&gt;&lt;PRE&gt;$headers = array(
				'Accept: application/json',
				'Content-Type: application/json',
				'Authorization: '.sprintf('Basic %s', $base64credentials),
'Content-Length: ' . strlen($data)
		);

$ch = curl_init('https://apitest.authorize.net/rest/v1/webhooks');
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_TIMEOUT, 120);
curl_setopt($ch, CURLOPT_HEADER, 0); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 1);
		
$response = curl_exec($ch); 
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close ($ch);&lt;/PRE&gt;</description>
      <pubDate>Fri, 15 Mar 2019 15:17:27 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66961#M40451</guid>
      <dc:creator>redcart</dc:creator>
      <dc:date>2019-03-15T15:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66962#M40452</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I think I just spotted the problem after pasting in my code.&amp;nbsp; Notice the $curl vs $ch variables. Oops! :)&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 15:19:00 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66962#M40452</guid>
      <dc:creator>redcart</dc:creator>
      <dc:date>2019-03-15T15:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66964#M40454</link>
      <description>&lt;P&gt;So you are issuing a new version of your application that uses Accept Hosted? That's cool.&amp;nbsp; Was this triggered by the mass hysteria over md5 to sha512?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 18:20:46 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66964#M40454</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2019-03-15T18:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66966#M40456</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yep - Accept Hosted will be replacing our old SIM integration.&amp;nbsp; And yes, it was triggered by the mass hysteria over MD5 to sha512 and the fact that Authorize.net keeps telling all of our clients that SIM is being deprecated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From what I'm seeing, I think the old SIM hosted payment form looked a lot better.&amp;nbsp; I haven't had a chance to look at the the options for customizing the Accept Hosted payment form yet (programmatically) but I'm hoping there's ways to improve it.&amp;nbsp; Currently I think it looks like crap and I know my customers aren't going to like it in it's current state.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 18:30:08 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66966#M40456</guid>
      <dc:creator>redcart</dc:creator>
      <dc:date>2019-03-15T18:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66970#M40460</link>
      <description>The options are quite limited. Changing a few colors and text. The way to pretty it up is to use an iframe. I think SIM will last for a long time. It has no EOL announced. I still recommend Accept Hosted to everyone. I’m going to be working with the iframe at some point. The redirect method is such a no brainer that it solves payment easily, but it is better to offer a consistent feel with the rest of the site.</description>
      <pubDate>Fri, 15 Mar 2019 20:21:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/66970#M40460</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2019-03-15T20:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/68359#M41589</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/26959"&gt;@Renaissance&lt;/a&gt;, I just joined the group after reading numerous posts of yours.&amp;nbsp; I am new and this might not be the best way to get your help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.developer.authorize.net/t5/user/viewprofilepage/user-id/26959" target="_self"&gt;&lt;SPAN class="login-bold"&gt;We are using SIM right now and are in the middle of developing teh webhook using Accepted Host method.&amp;nbsp; &lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN class="login-bold"&gt;We use a live A.net account&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="login-bold"&gt;The transactions are successfully recorded on the merchant A.net account&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class="login-bold"&gt;But the webhook arrays are empty, nothing is relayed back to our website for recording and notifications.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN class="login-bold"&gt;We program in php. Our website is on:&lt;A href="http://wwvr5.wwwebweavers.com/index.php?lang=en" target="_blank" rel="noopener"&gt;http://wwvr5.wwwebweavers.com/index.php?lang=en&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 00:38:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/68359#M41589</guid>
      <dc:creator>nanqiyou</dc:creator>
      <dc:date>2019-07-11T00:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/68367#M41595</link>
      <description>&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/31519"&gt;@nanqiyou&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;For future reference, if you need help first search the forum for your issue and see if it has been solved. Then make a new topic with your issue if step 1 gets no results. I work the forum while waiting for food at restaurants and also on sick days or times when I have downtime with nothing to do. I will see your post and if it’s something I can help you with I will reply.&lt;BR /&gt;&lt;BR /&gt;For this issue, if you are running webhooks on a live account in test mode that is your problem. Live accounts return no data. The fact that the transactions show up in your interface suggests that you are not in test mode, however.&lt;BR /&gt;&lt;BR /&gt;If that is the case, post the script that is on your endpoint. Also post the url of your endpoint. Make a new topic then please mark it solved if I am able to solve your issue. Solved threads that hang around as unsolved are a pet peeve of mine.</description>
      <pubDate>Thu, 11 Jul 2019 12:03:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/68367#M41595</guid>
      <dc:creator>Renaissance</dc:creator>
      <dc:date>2019-07-11T12:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/68371#M41598</link>
      <description>&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/26959"&gt;@Renaissance&lt;/a&gt;&amp;nbsp;, thank you.&amp;nbsp; I will post a new topic.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2019 14:53:14 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/68371#M41598</guid>
      <dc:creator>nanqiyou</dc:creator>
      <dc:date>2019-07-11T14:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Accept Hosted Redirect Method - Transaction Status Notifications</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/80912#M50989</link>
      <description>&lt;P&gt;Why&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/31519"&gt;@nanqiyou&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/26959"&gt;@Renaissance&lt;/a&gt;, I just joined the group after reading numerous posts of yours.&amp;nbsp; I am new and this might not be the best way to get your help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.developer.authorize.net/t5/user/viewprofilepage/user-id/26959" target="_self"&gt;&lt;SPAN class=""&gt;We are using SIM right now and are in the middle of developing teh webhook using Accepted Host method.&amp;nbsp; &lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;We use a live A.net account&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;The transactions are successfully recorded on the merchant A.net account&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;But the webhook arrays are empty, nothing is relayed back to our website for recording and notifications.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN class=""&gt;We program in php. Our website is on:&lt;A href="http://wwvr5.wwwebweavers.com/index.php?lang=en" target="_blank" rel="noopener"&gt;http://wwvr5.wwwebweavers.com/index.php?lang=en&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Why these sites are not working properly, I am trying to use SIM according to the instructions but its now working on my &lt;A href="https://www.tommypet.com" target="_self"&gt;side&lt;/A&gt;, also I am trying to reach on their support but failed.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Jan 2022 08:13:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/Accept-Hosted-Redirect-Method-Transaction-Status-Notifications/m-p/80912#M50989</guid>
      <dc:creator>techupdate0</dc:creator>
      <dc:date>2022-01-23T08:13:10Z</dc:date>
    </item>
  </channel>
</rss>

