now i got a ERROR 405 : Method Not allowed , using the url that such as your suggest. any idea?
Thanks
This is my function (working) to generate the URL to go against in order to add a contact:
sGroupName = System.Web.HttpUtility.UrlEncode(sGroupName);
string sUrl = "http://rcore1.messenger.yahooapis.com/v1/group/{{GROUP}}/contact/yahoo/{{USER}}";
sUrl = sUrl.Replace("{{GROUP}}", sGroupName);
sUrl = sUrl.Replace("{{USER}}", sYahooId);
string request = string.Format("{0}?oauth_consumer_key={1}&oauth_nonce={2}&oauth_signature_method=PLAINTEXT&oauth_signature={3}%26{4}&oauth_timestamp={5}&oauth_token={6}&oauth_version=1.0&sid={7}", sUrl, sConsumerKey, Guid.NewGuid().ToString(), sConsumerSecretKey, oUser.GetOAuthSecretToken(), GetDateTimeNowEpoch(), oUser.GetOAuthToken(), oUser.GetLogginResponse().sessionId);
And for the JSON, it's really weird that you have "authReason" ? Where did you find that? :oThomas