<?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 JSON issues in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48851#M24533</link>
    <description>&lt;P&gt;Great to see JSON being implemented! There are some issues though.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;With the JSON response a BOM UTF-8 character is included. BOM on UTF-8 makes no sense. This should not be there as it will confuse most JSON parses. You will have lots of feedback from people who can't understand why they cannot parse the JSON - and they won't know why because it's usually not apparent that the BOM is the issue, the parser just says "sorry, can't do it" with no further meaningful&amp;nbsp;error message. References:&amp;nbsp;&lt;A target="_blank" href="http://en.wikipedia.org/wiki/Byte_order_mark"&gt;http://en.wikipedia.org/wiki/Byte_order_mark&lt;/A&gt; and&amp;nbsp;&lt;A target="_blank" href="http://stackoverflow.com/questions/14532149/bom-in-server-response-screws-up-json-parsing"&gt;http://stackoverflow.com/questions/14532149/bom-in-server-response-screws-up-json-parsing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a temporary fix for PHP using this service right now the following code will remove the BOM character and should be run before you run it through json_decode():&amp;nbsp;$response = preg_replace('/\xEF\xBB\xBF/', '', $response);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;How do you specify multiple settings in the request? Logically it should be defined like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "createTransactionRequest": {
        "merchantAuthentication": {
            "name": "xxxxxx",
            "transactionKey": "xxxxxx"
        },
        "refId": "123456",
        "transactionRequest": {
            "transactionType": "authCaptureTransaction",
            "amount": "5",
            "payment": {
                "creditCard": {
                    "cardNumber": "5424000000000015",
                    "expirationDate": "1220",
                    "cardCode": "999"
                }
            },
            "lineItems": {
                "lineItem": {
                    "itemId": "1",
                    "name": "vase",
                    "description": "Cannes logo",
                    "quantity": "18",
                    "unitPrice": "45.00"
                }
            },
            "tax": {
                "amount": "4.26",
                "name": "level2 tax name",
                "description": "level2 tax"
            },
            "duty": {
                "amount": "8.55",
                "name": "duty name",
                "description": "duty description"
            },
            "shipping": {
                "amount": "4.26",
                "name": "level2 tax name",
                "description": "level2 tax"
            },
            "poNumber": "456654",
            "customer": {
                "id": "99999456654"
            },
            "billTo": {
                "firstName": "Ellen",
                "lastName": "Johnson",
                "company": "Souveniropolis",
                "address": "14 Main Street",
                "city": "Pecan Springs",
                "state": "TX",
                "zip": "44628",
                "country": "USA"
            },
            "shipTo": {
                "firstName": "China",
                "lastName": "Bayles",
                "company": "Thyme for Tea",
                "address": "12 Main Street",
                "city": "Pecan Springs",
                "state": "TX",
                "zip": "44628",
                "country": "USA"
            },
            "customerIP": "192.168.1.1",
            "transactionSettings": [
				{
					"setting": {
						"settingName": "duplicateWindow",
						"settingValue": "240"
					}
				},
				{
					"setting": {
						"settingName": "merchantEmail",
						"settingValue": "my@email.com"
					}
				}
            ]
        }
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;But this will produce the following&amp;nbsp;truly misleading error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "messages": {
        "resultCode": "Error",
        "message": [
            {
                "code": "E00003",
                "text": "The element 'transactionRequest' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' has invalid child element 'transactionSettings' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'. List of possible elements expected: 'userFields' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'."
            }
        ]
    }
}&lt;/PRE&gt;&lt;P&gt;The error message makes the programmer focus on element transactionSettings within transactionRequest - instead of the real issue deeper down.&lt;/P&gt;&lt;P&gt;As soon as you remove one of the settings from the array the error disappears.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The same issue&amp;nbsp;applies to "lineItems".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Also, the correct way to set a single setting is wrapping it in an array like this:&lt;/P&gt;&lt;PRE&gt;"transactionSettings": [
	{
		"setting": {
			"settingName": "merchantEmail",
			"settingValue": "allan@sharehim.org"
		}
	}
]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;The way the online API reference does it without the array is not the proper way to do it since you end up with different types of structures depending on whether you have one or multiple settings - and that's not smart. Both ways seem to work for a single setting&amp;nbsp;though.&lt;/P&gt;</description>
    <pubDate>Tue, 18 Nov 2014 11:15:25 GMT</pubDate>
    <dc:creator>winternet</dc:creator>
    <dc:date>2014-11-18T11:15:25Z</dc:date>
    <item>
      <title>JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48851#M24533</link>
      <description>&lt;P&gt;Great to see JSON being implemented! There are some issues though.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;With the JSON response a BOM UTF-8 character is included. BOM on UTF-8 makes no sense. This should not be there as it will confuse most JSON parses. You will have lots of feedback from people who can't understand why they cannot parse the JSON - and they won't know why because it's usually not apparent that the BOM is the issue, the parser just says "sorry, can't do it" with no further meaningful&amp;nbsp;error message. References:&amp;nbsp;&lt;A target="_blank" href="http://en.wikipedia.org/wiki/Byte_order_mark"&gt;http://en.wikipedia.org/wiki/Byte_order_mark&lt;/A&gt; and&amp;nbsp;&lt;A target="_blank" href="http://stackoverflow.com/questions/14532149/bom-in-server-response-screws-up-json-parsing"&gt;http://stackoverflow.com/questions/14532149/bom-in-server-response-screws-up-json-parsing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a temporary fix for PHP using this service right now the following code will remove the BOM character and should be run before you run it through json_decode():&amp;nbsp;$response = preg_replace('/\xEF\xBB\xBF/', '', $response);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;How do you specify multiple settings in the request? Logically it should be defined like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "createTransactionRequest": {
        "merchantAuthentication": {
            "name": "xxxxxx",
            "transactionKey": "xxxxxx"
        },
        "refId": "123456",
        "transactionRequest": {
            "transactionType": "authCaptureTransaction",
            "amount": "5",
            "payment": {
                "creditCard": {
                    "cardNumber": "5424000000000015",
                    "expirationDate": "1220",
                    "cardCode": "999"
                }
            },
            "lineItems": {
                "lineItem": {
                    "itemId": "1",
                    "name": "vase",
                    "description": "Cannes logo",
                    "quantity": "18",
                    "unitPrice": "45.00"
                }
            },
            "tax": {
                "amount": "4.26",
                "name": "level2 tax name",
                "description": "level2 tax"
            },
            "duty": {
                "amount": "8.55",
                "name": "duty name",
                "description": "duty description"
            },
            "shipping": {
                "amount": "4.26",
                "name": "level2 tax name",
                "description": "level2 tax"
            },
            "poNumber": "456654",
            "customer": {
                "id": "99999456654"
            },
            "billTo": {
                "firstName": "Ellen",
                "lastName": "Johnson",
                "company": "Souveniropolis",
                "address": "14 Main Street",
                "city": "Pecan Springs",
                "state": "TX",
                "zip": "44628",
                "country": "USA"
            },
            "shipTo": {
                "firstName": "China",
                "lastName": "Bayles",
                "company": "Thyme for Tea",
                "address": "12 Main Street",
                "city": "Pecan Springs",
                "state": "TX",
                "zip": "44628",
                "country": "USA"
            },
            "customerIP": "192.168.1.1",
            "transactionSettings": [
				{
					"setting": {
						"settingName": "duplicateWindow",
						"settingValue": "240"
					}
				},
				{
					"setting": {
						"settingName": "merchantEmail",
						"settingValue": "my@email.com"
					}
				}
            ]
        }
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;But this will produce the following&amp;nbsp;truly misleading error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "messages": {
        "resultCode": "Error",
        "message": [
            {
                "code": "E00003",
                "text": "The element 'transactionRequest' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd' has invalid child element 'transactionSettings' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'. List of possible elements expected: 'userFields' in namespace 'AnetApi/xml/v1/schema/AnetApiSchema.xsd'."
            }
        ]
    }
}&lt;/PRE&gt;&lt;P&gt;The error message makes the programmer focus on element transactionSettings within transactionRequest - instead of the real issue deeper down.&lt;/P&gt;&lt;P&gt;As soon as you remove one of the settings from the array the error disappears.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The same issue&amp;nbsp;applies to "lineItems".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Also, the correct way to set a single setting is wrapping it in an array like this:&lt;/P&gt;&lt;PRE&gt;"transactionSettings": [
	{
		"setting": {
			"settingName": "merchantEmail",
			"settingValue": "allan@sharehim.org"
		}
	}
]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;The way the online API reference does it without the array is not the proper way to do it since you end up with different types of structures depending on whether you have one or multiple settings - and that's not smart. Both ways seem to work for a single setting&amp;nbsp;though.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Nov 2014 11:15:25 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48851#M24533</guid>
      <dc:creator>winternet</dc:creator>
      <dc:date>2014-11-18T11:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48855#M24535</link>
      <description>&lt;P&gt;If you look at the userFields, I worder if the setting is the array.&lt;/P&gt;&lt;PRE&gt;            "transactionSettings": {
                "setting": {
                    "settingName": "testRequest",
                    "settingValue": "false"
                }
            },
            "userFields": {
                "userField": [
                    {
                        "name": "MerchantDefinedFieldName1",
                        "value": "MerchantDefinedFieldValue1"
                    },
                    {
                        "name": "favorite_color",
                        "value": "blue"
                    }
                ]
            }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Nov 2014 12:14:53 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48855#M24535</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2014-11-18T12:14:53Z</dc:date>
    </item>
    <item>
      <title>Is anyone using JSON in production with authorize.net?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48909#M24551</link>
      <description>&lt;P&gt;How is the JSON Beta going?&amp;nbsp; I see in this post there are issues.&amp;nbsp; Is anyone using the JSON in production?&amp;nbsp; I'm interested to know how it is going.&amp;nbsp; I'm researching this gateway for ease of implementation and already use JSON in my custom built shopping cart.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2014 16:48:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48909#M24551</guid>
      <dc:creator>onemaster</dc:creator>
      <dc:date>2014-11-19T16:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Is anyone using JSON in production with authorize.net?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48911#M24552</link>
      <description>&lt;P&gt;Hello &lt;a href="https://community.developer.cybersource.com/t5/user/viewprofilepage/user-id/17649"&gt;@onemaster&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Glad to see we have more interest in our JSON message format. &amp;nbsp;We only released this a few days ago, so it will likely take a some more time to properly bake before using in production.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Wed, 19 Nov 2014 17:07:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48911#M24552</guid>
      <dc:creator>RichardH</dc:creator>
      <dc:date>2014-11-19T17:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is anyone using JSON in production with authorize.net?</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48959#M24584</link>
      <description>&lt;P&gt;Okay, @onemaster&amp;nbsp;was almost&amp;nbsp;correct. The correct way to set the settings are...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for multiple settings:&lt;/P&gt;&lt;PRE&gt;"transactionSettings": {
	"setting": [
		{
			"settingName": "duplicateWindow",
			"settingValue": "240"
		},
		{
			"settingName": "merchantEmail",
			"settingValue": "my@email.com"
		}
	]
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for a single setting:&lt;/P&gt;&lt;PRE&gt;"transactionSettings": {
	"setting": [
		{
			"settingName": "merchantEmail",
			"settingValue": "my@email.com"
		}
	]
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It has some unnecessary structure though but maybe it is required since it seems like the server actually converts it to XML before processing... And as&amp;nbsp;long as it is properly documented and it works - no need to bother...&lt;/P&gt;</description>
      <pubDate>Sun, 23 Nov 2014 09:39:45 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/48959#M24584</guid>
      <dc:creator>winternet</dc:creator>
      <dc:date>2014-11-23T09:39:45Z</dc:date>
    </item>
    <item>
      <title>Re: JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/55043#M29988</link>
      <description>&lt;P&gt;I just wanted to +1 on the BOM in front of the JSON repsonse being an issue. I just spent half a day trying to figure out why the parser was failing...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jun 2016 19:02:34 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/55043#M29988</guid>
      <dc:creator>leehinde</dc:creator>
      <dc:date>2016-06-28T19:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/57825#M32513</link>
      <description>&lt;P&gt;Oh wow, me too. It's 2017 now and I had been scratching my head over why I could not parse the JSON response for most of an afternoon. Why is it there? It's not like it's a standalone file with no context - we get the JSON over a HTTP connection and *know* what encoding is used through that. The BOM needs to go IMO.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 09:55:10 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/57825#M32513</guid>
      <dc:creator>jasonjudge</dc:creator>
      <dc:date>2017-04-27T09:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/64734#M38553</link>
      <description>&lt;P&gt;&lt;A href="https://nzeid.net/authorize-net/illegal-bom.png" target="_blank"&gt;BOMs&lt;/A&gt; are illegal in JSON. I thought they were just garbage artifacts returned by a careless bug in the API until I found this thread.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Oct 2018 21:36:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/64734#M38553</guid>
      <dc:creator>uplf4eh9</dc:creator>
      <dc:date>2018-10-10T21:36:09Z</dc:date>
    </item>
    <item>
      <title>Re: JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/64740#M38558</link>
      <description>&lt;P&gt;Some links to the standards and background comments here:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/4990095/json-specification-and-usage-of-bom-charset-encoding" target="_blank"&gt;https://stackoverflow.com/questions/4990095/json-specification-and-usage-of-bom-charset-encoding&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Come on Authorize.Net, make that leap and remove the BOM. We don't even use it - we just strip it out and throw it away. It serves no purpose, gets in the way, and is not a legal part of JSON anyway.&lt;/P&gt;</description>
      <pubDate>Thu, 11 Oct 2018 08:22:31 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/64740#M38558</guid>
      <dc:creator>jasonjudge</dc:creator>
      <dc:date>2018-10-11T08:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/73001#M45150</link>
      <description>&lt;P&gt;How many developers need to complain about the time they wasted before you remove the BOM?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Or at the very least mention it in the docs!&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 20:39:26 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/73001#M45150</guid>
      <dc:creator>billynoah</dc:creator>
      <dc:date>2020-08-25T20:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/73002#M45151</link>
      <description>&lt;P&gt;This might help some of you who are trying to parse out the bom in php:&lt;/P&gt;&lt;P&gt;&lt;A href="https://stackoverflow.com/questions/10290849/how-to-remove-multiple-utf-8-bom-sequences" target="_blank"&gt;https://stackoverflow.com/questions/10290849/how-to-remove-multiple-utf-8-bom-sequences&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 20:57:50 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/73002#M45151</guid>
      <dc:creator>billynoah</dc:creator>
      <dc:date>2020-08-25T20:57:50Z</dc:date>
    </item>
    <item>
      <title>Re: JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/73003#M45152</link>
      <description>&lt;P&gt;If using PHP, the code snippet here may be useful:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/academe/omnipay-authorizenetapi/blob/3f78bf58aff757850f4888bfff503704b5d69875/src/Message/AbstractRequest.php#L68" target="_blank"&gt;https://github.com/academe/omnipay-authorizenetapi/blob/3f78bf58aff757850f4888bfff503704b5d69875/src/Message/AbstractRequest.php#L68&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Aug 2020 22:18:42 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/73003#M45152</guid>
      <dc:creator>jasonjudge</dc:creator>
      <dc:date>2020-08-25T22:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: JSON issues</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/87240#M54887</link>
      <description>&lt;P&gt;If you can't parse the Authorize.net response and work with node.js use this, to remove the BOM from the response:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;res.&lt;SPAN&gt;body &lt;/SPAN&gt;= res.&lt;SPAN&gt;text&lt;/SPAN&gt;.&lt;SPAN&gt;replace&lt;/SPAN&gt;(&lt;SPAN&gt;/^\uFEFF/gm&lt;/SPAN&gt;, &lt;SPAN&gt;""&lt;/SPAN&gt;).&lt;SPAN&gt;replace&lt;/SPAN&gt;(&lt;SPAN&gt;/^\u00BB\u00BF/gm&lt;/SPAN&gt;, &lt;SPAN&gt;""&lt;/SPAN&gt;);&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Aug 2023 11:21:12 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/JSON-issues/m-p/87240#M54887</guid>
      <dc:creator>nadav</dc:creator>
      <dc:date>2023-08-04T11:21:12Z</dc:date>
    </item>
  </channel>
</rss>

