I am developing web application (using VS2010 and asp.net,c#) that gets all aweber users list. I am using following code to achieve it.
i am using this useful document. as per this document i did following things..
- created account in aweber labs https://labs.aweber.com/
- created "test" app
- Use the "consumerKey" and "consumerSecret" code which is given by aweber team.
used following code
String consumerKey = "Afdgdfgdgfgdfll"; String consumerSecret = "zDKexfgdfgdfQqlKh5KD"; API api = new API(consumerKey, consumerSecret); api.CallbackUrl = "http://" + Request.Url.Host + ":" + Request.Url.Port + "/Authorize.aspx"; api.get_request_token(); HttpContext.Current.Session.Add("oauth_token", api.OAuthToken); HttpContext.Current.Session.Add("oauth_token_secret", api.OAuthTokenSecret); api.authorize();
i am getting null value "OAuthToken". If any solution then let me guide.
Thanks in advance. !!