I am going off the accepted answer from this post: Connecting an ASP.NET application to QuickBooks Online Edition
I am getting a 400 error when making the connection thru C#. I have read that this might be because of an XML error. Here is my XML:
<?xml version="1.0"?>
<?qbxml version="6.0"?>
<QBXML>
<SignonMsgsRq>
<SignonDesktopRq>
<ClientDateTime>2013-04-12T15:54:18</ClientDateTime>
<ApplicationLogin>MY APP LOGIN</ApplicationLogin>
<ConnectionTicket>MY CONNECTION TICKET</ConnectionTicket>
<Language>English</Language>
<AppID>MY APP ID</AppID>
<AppVer>1</AppVer>
</SignonDesktopRq>
</SignonMsgsRq>
</QBXML>
I am not seeing any issues with the XML. Yes I am substituting my actual applicationLogin,ConnectionTicket, and AppID. Am I missing something?