Reputation: 1
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.
Upvotes: 0
Views: 982
Reputation: 4253
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
Upvotes: 1