Browser to Xero - Part 2 - OAuth

Last time we created a simple HTTP proxy, that supports CORS , so we can access the Xero API directly from a browser. This time we'll be navigating the Xero OAuth labyrinth to make sure we have the required API access. We'll start by registering our website with Xero and follow by implementing the RequestToken-Login-AccessToken process. The OAuth Labyrinth Our test web page will contain a single button to initiate the process. Once clicked, the browser will jump to a Xero page whereby a user can allow access. Once we allow access, the Xero page will jump back to our test page and our test page will show a simple message. Behind the scenes, the process is a little more involved. The steps are shown below. Xero Setup Now, before any of this can happen, we must create a Xero account and register our "App" by supplying an App name, application URL, and callback domain. The App name is arbitrary, however, the Application URL must point to our previously create...