This code I have tried this code Implementing Yahoo! Contact Reader Using ASP.NET it is working fine but this code is for Read Contact. But I want to code to retrieve users's profile. In user's profile I want to only retrieve user's name, user's email id .

I am confused what should change in the code so that I can get my desired result.

Can anyone help me so that I can get the desired result.

link|improve this question
feedback

1 Answer

You can get the profile information by using guid and the yql query to get social profile select * from social.profile where guid = me, you can execute the yql query by passing the query to the url http://query.yahooapis.com/v1/yql?q=YOUR_QUERY&diagnostics=true replace the text YOUR_QUERY with the text of your url encoded query

A sample url to execute the yql query http://query.yahooapis.com/v1/yql?q=select%20*%20from%20social.profile%20where%20guid%20%3D%20me&diagnostics=true

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.