<?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>thread Re: Resource Not Found while trying to process a simple payment using Square Connect API in Archived Discussions (Read Only)</title>
    <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10445#M88694</link>
    <description>&lt;P&gt;Sorry I missed&amp;nbsp;your previous replies, thanks for tagging me &lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/20785"&gt;@txtumble&lt;/a&gt;!&amp;nbsp;I'll report back shortly.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Jul 2016 16:38:27 GMT</pubDate>
    <dc:creator>Spenser</dc:creator>
    <dc:date>2016-07-12T16:38:27Z</dc:date>
    <item>
      <title>Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/8187#M88684</link>
      <description>&lt;P&gt;Hi guys, I'm testing out the Square Connect API in the Sandbox environment and getting the following results below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using my Sandbox Application ID and Sandbox Access Token. What is the reason that I'd be getting a "Resource Not Found" error message. I'm using a location that does have Credit Card processing enabled. I'm just using the basic example code found here --&amp;gt; &lt;A href="https://github.com/square/connect-api-examples/tree/master/connect-examples/v2/php_payment" target="_blank"&gt;https://github.com/square/connect-api-examples/tree/master/connect-examples/v2/php_payment&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Caught exception!&lt;BR /&gt;&lt;STRONG&gt;Response body:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;object(stdClass)#6 (1) {
  ["errors"]=&amp;gt;
  array(1) {
    [0]=&amp;gt;
    object(stdClass)#7 (4) {
      ["category"]=&amp;gt;
      string(21) "INVALID_REQUEST_ERROR"
      ["code"]=&amp;gt;
      string(9) "NOT_FOUND"
      ["detail"]=&amp;gt;
      string(19) "Resource not found."
      ["field"]=&amp;gt;
      string(10) "card_nonce"
    }
  }
}&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Response headers:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;array(12) {
  [0]=&amp;gt;
  string(22) "HTTP/1.1 404 Not Found"
  ["Content-Type"]=&amp;gt;
  string(16) "application/json"
  ["Vary"]=&amp;gt;
  string(15) "Accept-Encoding"
  ["X-Content-Type-Options"]=&amp;gt;
  string(7) "nosniff"
  ["X-Download-Options"]=&amp;gt;
  string(6) "noopen"
  ["X-Frame-Options"]=&amp;gt;
  string(10) "SAMEORIGIN"
  ["X-Permitted-Cross-Domain-Policies"]=&amp;gt;
  string(4) "none"
  ["X-Xss-Protection"]=&amp;gt;
  string(13) "1; mode=block"
  ["Date"]=&amp;gt;
  string(29) "Fri, 24 Jun 2016 03:45:38 GMT"
  ["Content-Length"]=&amp;gt;
  string(3) "121"
  ["Keep-Alive"]=&amp;gt;
  string(10) "timeout=60"
  ["Strict-Transport-Security"]=&amp;gt;
  string(17) "max-age=631152000"
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 03:56:29 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/8187#M88684</guid>
      <dc:creator>nmcwilli</dc:creator>
      <dc:date>2016-06-24T03:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/8461#M88685</link>
      <description>&lt;P&gt;Sorry to hear about the trouble. I'm going to loop in our developer team on this and we'll get back to you shortly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jun 2016 22:52:23 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/8461#M88685</guid>
      <dc:creator>Spenser</dc:creator>
      <dc:date>2016-06-26T22:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/8546#M88686</link>
      <description>&lt;P&gt;Thanks for your patience, just heard back!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the 404 not found error you&amp;nbsp;are receiving is on the field for card nonce. That means you're&amp;nbsp;trying to charge without one. You need to use the payment form to create a card nonce (&lt;A href="https://docs.connect.squareup.com/articles/adding-payment-form/" target="_blank" rel="nofollow"&gt;https://docs.connect.squareup.com/articles/adding-payment-form/&lt;/A&gt;) that you&amp;nbsp;can then use to call the charge endpoint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alternately, you&amp;nbsp;could use the customers endpoints (&lt;A href="https://docs.connect.squareup.com/articles/saving-customer-information/" target="_blank" rel="nofollow"&gt;https://docs.connect.squareup.com/articles/saving-customer-information/&lt;/A&gt;) to perform card on file transactions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps, let me know if you have additional questions&amp;nbsp;&lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/16830"&gt;@nmcwilli﻿&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jun 2016 17:41:03 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/8546#M88686</guid>
      <dc:creator>Spenser</dc:creator>
      <dc:date>2016-06-27T17:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/9655#M88687</link>
      <description>&lt;P&gt;&lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/1985"&gt;@Spenser﻿&lt;/a&gt;&amp;nbsp;I'm having the same issue. I have the request JSON&amp;nbsp;and the card_nonce field is present and populated. Could you help me any further?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2016 00:24:12 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/9655#M88687</guid>
      <dc:creator>zhlavinka</dc:creator>
      <dc:date>2016-07-06T00:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/9659#M88688</link>
      <description>&lt;P&gt;Thanks for the heads up, &lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/20054"&gt;@zhlavinka&lt;/a&gt;. I'll report back when I have an update!&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2016 00:39:48 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/9659#M88688</guid>
      <dc:creator>Spenser</dc:creator>
      <dc:date>2016-07-06T00:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/9674#M88689</link>
      <description>&lt;P&gt;&lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/1985"&gt;@Spenser﻿&lt;/a&gt;&amp;nbsp;Thanks! I must have setup that username with one of my clients on accident. I figured out the issue though.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2016 04:50:32 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/9674#M88689</guid>
      <dc:creator>stinky</dc:creator>
      <dc:date>2016-07-06T04:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/9868#M88690</link>
      <description>&lt;P&gt;&lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/20054"&gt;@zhlavinka&lt;/a&gt;, it looks like you obtained the card-nonce using your sandbox access token, and then tried to charge the sandbox nonce in your non-sandbox (production) application. The sandbox nonces will&amp;nbsp;only work for the charge endpoint in the sandbox, and production application nonces only work in production.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Hope that info helps!&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2016 16:57:15 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/9868#M88690</guid>
      <dc:creator>Spenser</dc:creator>
      <dc:date>2016-07-07T16:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10260#M88691</link>
      <description>&lt;P&gt;I'm having the same issue. &amp;nbsp;Any ideas?&lt;/P&gt;</description>
      <pubDate>Sun, 10 Jul 2016 21:38:28 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10260#M88691</guid>
      <dc:creator>txtumble</dc:creator>
      <dc:date>2016-07-10T21:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10277#M88692</link>
      <description>&lt;P&gt;Let me know if you need the code.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2016 00:51:34 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10277#M88692</guid>
      <dc:creator>txtumble</dc:creator>
      <dc:date>2016-07-11T00:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10440#M88693</link>
      <description>&lt;P&gt;&lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/1985"&gt;@Spenser﻿&lt;/a&gt;&amp;nbsp;Any ideas?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 16:13:05 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10440#M88693</guid>
      <dc:creator>txtumble</dc:creator>
      <dc:date>2016-07-12T16:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10445#M88694</link>
      <description>&lt;P&gt;Sorry I missed&amp;nbsp;your previous replies, thanks for tagging me &lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/20785"&gt;@txtumble&lt;/a&gt;!&amp;nbsp;I'll report back shortly.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 16:38:27 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10445#M88694</guid>
      <dc:creator>Spenser</dc:creator>
      <dc:date>2016-07-12T16:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10742#M88695</link>
      <description>&lt;P&gt;Alright,&amp;nbsp;&lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/20785"&gt;@txtumble﻿&lt;/a&gt;, sorry for the delay!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Receiving a not_found error from the charge endpoint is most commonly caused by one of two issues:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;1) Not using the payments form to obtain a card_nonce before calling the charge endpoint. Documentation for setting up the payment form can be found at &lt;A href="https://docs.connect.squareup.com/articles/adding-payment-form/" target="_self"&gt;https://docs.connect.squareup.com/articles/adding-payment-form/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;2) Either obtaining a card_nonce using your sandbox credentials and attempting to charge that nonce with your oauth credentials, or obtaining a card_nonce using your oauth credentials and attempting to charge it with your sandbox sandbox credentials. Please check to make sure that the credentials used to obtain the card_nonce are the same as the credentials used to charge. Sandbox credentials are identifiable by starting with the string "sandbox-". You can find documentation on using the sandbox &lt;A href="https://docs.connect.squareup.com/articles/using-sandbox/" target="_self"&gt;here&lt;/A&gt;&amp;nbsp;and your application credentials at &lt;A href="https://connect.squareup.com/apps" target="_self"&gt;https://connect.squareup.com/apps&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope that helps!&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jul 2016 17:02:55 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10742#M88695</guid>
      <dc:creator>Spenser</dc:creator>
      <dc:date>2016-07-14T17:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10944#M88696</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I've used this exact form&amp;nbsp;&lt;A href="https://docs.connect.squareup.com/articles/adding-payment-form/" target="_blank"&gt;https://docs.connect.squareup.com/articles/adding-payment-form/&lt;/A&gt;&amp;nbsp;I also know that I'm not using the sandbox because I have several charges that have go through correctly.&amp;nbsp;What would happen if the user had javascript turned off?&amp;nbsp; Could that cause an issue?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jul 2016 02:04:32 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/10944#M88696</guid>
      <dc:creator>txtumble</dc:creator>
      <dc:date>2016-07-16T02:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/11244#M88697</link>
      <description>&lt;P&gt;You might&amp;nbsp;actually be using sandbox mode still, &lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/20785"&gt;@txtumble﻿&lt;/a&gt;. You&amp;nbsp;can confirm that you&amp;nbsp;are not in sandbox mode by opening up the browser console (command-option-i in Chrome). If you&amp;nbsp;are in sandbox mode, there will be a short message that starts out "SqPaymentForm initialized in Sandbox Mode...".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That form requires that you replace the application ID (it's marked in a comment in the code: "// &amp;lt;-- Add your application ID here"). Can you&amp;nbsp;confirm that you've&amp;nbsp;added the application ID?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would you mind sending the&amp;nbsp;specific error that you're&amp;nbsp;receiving? The response body and response headers would be very helpful.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2016 00:25:59 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/11244#M88697</guid>
      <dc:creator>Spenser</dc:creator>
      <dc:date>2016-07-19T00:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/11258#M88698</link>
      <description>&lt;P&gt;Active URL:&amp;nbsp;&lt;A href="https://txtumbleweed100.com/register_online.php?rid=21" target="_blank"&gt;https://txtumbleweed100.com/register_online.php?rid=21&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Failed response:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(
    [errors] =&amp;gt; Array
        (
            [0] =&amp;gt; stdClass Object
                (
                    [category] =&amp;gt; INVALID_REQUEST_ERROR
                    [code] =&amp;gt; NOT_FOUND
                    [detail] =&amp;gt; Resource not found.
                    [field] =&amp;gt; card_nonce
                )

        )

)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2016 04:04:59 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/11258#M88698</guid>
      <dc:creator>txtumble</dc:creator>
      <dc:date>2016-07-19T04:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/11325#M88699</link>
      <description>&lt;P&gt;Thanks! The&amp;nbsp;issue is likely on the server side. Can you&amp;nbsp;see if the code that is making the request is from your&amp;nbsp;server to ours.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Additionally, make sure:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You're including the card nonce that is generated from the frontend in the request you're&amp;nbsp;making to our servers,&amp;nbsp;using the same applicationId in the frontend and the server side.&lt;/LI&gt;&lt;LI&gt;The frontend is using the id "sq0idp-SU7J4NyFb_Gu5z-C70OS4w". The server needs to use that same id when it tries to charge the card.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Keep me updated!&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2016 18:44:17 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/11325#M88699</guid>
      <dc:creator>Spenser</dc:creator>
      <dc:date>2016-07-19T18:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/14506#M88700</link>
      <description>&lt;P&gt;My experience with this error is with clients using FireFox.&amp;nbsp; Transactions work in all other browsers.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2016 23:46:08 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/14506#M88700</guid>
      <dc:creator>digitalcreation</dc:creator>
      <dc:date>2016-08-17T23:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/16519#M88701</link>
      <description>&lt;P&gt;&lt;A href="https://community.squareup.com/t5/user/viewprofilepage/user-id/1985" target="_blank"&gt;@Spenser&lt;/A&gt;&amp;nbsp;did you see this? &amp;nbsp;I've disallowed Firefox. &amp;nbsp;Any idea on when this will be fixed?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2016 22:08:21 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/16519#M88701</guid>
      <dc:creator>txtumble</dc:creator>
      <dc:date>2016-09-02T22:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/16526#M88702</link>
      <description>&lt;P&gt;Thanks for the mention,&amp;nbsp;&lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/20785"&gt;@txtumble﻿&lt;/a&gt;, and for the heads up&amp;nbsp;&lt;a href="https://community.squareup.com/t5/user/viewprofilepage/user-id/26941"&gt;@digitalcreation﻿&lt;/a&gt;!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It sounds like you&amp;nbsp;need to have an event argument to the submitButtonClick() function when you&amp;nbsp;setup the form. Chrome has a global event, whereas firefox does not. You&amp;nbsp;should be able see the difference between your&amp;nbsp;code (missing event argument) and our example code here: &lt;A href="https://github.com/square/connect-api-examples/blob/master/connect-examples/v2/php_payment/index.html#L74" target="_blank"&gt;https://github.com/square/connect-api-examples/blob/master/connect-examples/v2/php_payment/index.html#L74&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This should&amp;nbsp;fix the issue in firefox, but let me know if you're still having any trouble.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2016 23:46:22 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/16526#M88702</guid>
      <dc:creator>Spenser</dc:creator>
      <dc:date>2016-09-02T23:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Resource Not Found while trying to process a simple payment using Square Connect API</title>
      <link>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/26429#M88703</link>
      <description>&lt;P&gt;I'm having the same problem, and have verified all the items mentioned in previous posts. &amp;nbsp;Just can't figure out what is causing the problem.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 14:32:28 GMT</pubDate>
      <guid>https://community.squareup.com/t5/Archived-Discussions-Read-Only/Resource-Not-Found-while-trying-to-process-a-simple-payment/m-p/26429#M88703</guid>
      <dc:creator>TMBWT</dc:creator>
      <dc:date>2016-12-16T14:32:28Z</dc:date>
    </item>
  </channel>
</rss>

