I am trying to login into fogbugz using my c# application.I am using FogBugz XML API. The code that I am currently using is:
<form method="post" action="https://xxxxx.fogbugz.com/api.asp?cmd=logon">
Email:
<input type="text" value="email" name="email">
<br />
Password:
<input type="password" value="password" name="password">
<br />
<input type="submit">
<br />
</form>
When I do this I do get logged into FogBugz.I get an XML file as output where I have my token under tags.
Is there any way to make the user see an aspx file and not the XML file but I could use the XML file and cache the token value? I am new to FogBugz please help! Thank you.