Web service call to get Yahoomail contacts
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
How to Call webservice of Yahoo to get the Contact list.. I have created the Application ID and i am able to get the token value.. I need help to get the Webservice Session ID (wssid) to call webservice.. the code is as follows: Dim auth As New Yahoo.Authentication("XXXXXXXXX-", "XXXXXXXXXX") Session("Auth") = auth Dim success As Boolean = False If Not Session("Auth") Is Nothing Then auth = DirectCast(Session("Auth"), Yahoo.Authentication) End If If (Not Request.QueryString("token") Is Nothing) _ AndAlso Request.QueryString("token").Length > 0 Then ' Make sure the call is valid If auth.IsValidSignedUrl(Request.Url) = True Then success = True ' Save the user token. It is valid for two weeks auth.Token = Request.QueryString("token")