1

I'm trying to implement Windows Live Authentication in my ASP.Net application. Article really help me out. Above article needs redirection to the Windows Live website for authentication which i don't want to be. As am writing the code in a web service which will be called from mobile application. Any idea on how i can achieve this ? Later with this authentication i will try to access the Microsoft Forums Services.

Thanks in advance.

MUS
  • 1,450
  • 4
  • 17
  • 30

1 Answers1

1

You could use the HttpWebRequest class to post the credentials along with the AppId if you don't want to use this frame or you can't because of the service.

Hanlet Escaño
  • 17,114
  • 8
  • 52
  • 75
  • How can i post username and password to http://login.live.com/controls/WebAuth.htm?appid=123456 code example will be appreciated. – MUS Nov 23 '11 at 19:49
  • I don't have an appid at the moment, but you can create a page(just for testing purposes) and include the frame with the URL and use a sniffer to take a look at the Post (you could also see it with FireBug). I could help you out more in a couple of hours (I am at work right now) if you want to. – Hanlet Escaño Nov 23 '11 at 20:04