String consumerkey = "consumerkey"; String clientsecret = "clientsecret"; WebProxy webpro = new WebProxy("ourproxyserver",8080) webpro.BypassProxyOnLocal = true; webpro.Credentials = CredentialCache.DefaultCredentials; String access_token = "https://www.yammer.com/oauth2/access_token.json"+ "?client_id=clientid&"+ "client_secret=cli_secret&code=code_id"; Yammer.Session session = new Yammer.Session(new OAuth.OAuthKey(consumerkey, clientsecret, access_token,"token") , webpro); NameValueCollection parameters = new NameValueCollection(); parameters.Add("body", body); response = Yammer.HttpUtility.Post(Resources.YAMMER_MESSAGES_CREATE, parameters, session);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)