Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to get Users information on twitter API using asp.net
    text
    copied!<p>I am currently working on a project using twitter API.</p> <p>I have a code like this :</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Newtonsoft.Json.Linq; // Added for JSON Library ( Doc) using System.Xml; using oAuthExample; public partial class twitterInfo : System.Web.UI.Page { string url = ""; string xml = ""; public string name = ""; public string username = ""; public string profileImage = ""; public string followersCount = ""; public string noOfTweets = ""; public string recentTweet = ""; //Source http://www.aspdotnet-suresh.com/2012/05/add-twitter-login-authentication-to.html protected void Page_Load(object sender, EventArgs e) { GetUserDetailsFromTwitter(); } private void GetUserDetailsFromTwitter() { if (Request["oauth_token"] != null &amp; Request["oauth_verifier"] != null) { imgTwitter.Visible = false; tbleTwitInfo.Visible = true; var oAuth = new oAuthTwitter(); //Get the access token and secret. oAuth.AccessTokenGet(Request["oauth_token"], Request["oauth_verifier"]); if (oAuth.TokenSecret.Length &gt; 0) { url = "https://api.twitter.com/1.1/account/verify_credentials.json"; xml = oAuth.oAuthWebRequest(oAuthTwitter.Method.GET, url, String.Empty); JObject o = JObject.Parse(xml); name = Convert.ToString(o["name"]); username = Convert.ToString(o["screen_name"]); profileImage = Convert.ToString(o["profile_image_url"]); followersCount = Convert.ToString(o["followers_count"]); noOfTweets = Convert.ToString(o["statuses_count"]); noOfTweets = Convert.ToString(o["birthday"]); } } } protected void imgTwitter_Click(object sender, ImageClickEventArgs e) { var oAuth = new oAuthTwitter(); if (Request["oauth_token"] == null) { //Redirect the user to Twitter for authorization. //Using oauth_callback for local testing. // R_ use the dynamic url director // Call back URL to direct the user to the page oAuth.CallBackUrl = "http://localhost:518/Account/TwitterInfo.aspx"; Response.Redirect(oAuth.AuthorizationLinkGet()); } else { GetUserDetailsFromTwitter(); } } } </code></pre> <p>This code is part of a Twitter API project to return (name, twitterusername, profileimage,followers and number of tweets). I know that Twitter API does not retrieve users email address. but I want to retrieve user's profile ID and user's profile link... Can Anyone tell me what should I have to change from the code above to retrieve those two datas?</p> <p>Here's <a href="http://www.aspdotnet-suresh.com/2012/05/add-twitter-login-authentication-to.html" rel="nofollow">a link</a> for the complete source code.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload