geremyk / google-gdata

Automatically exported from code.google.com/p/google-gdata
0 stars 0 forks source link

First name is empty #160

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
Here is the code:
string feedUrl = "http://gdata.youtube.com/feeds/api/users/" + 
TextBox1.Text;
        YouTubeService service = new YouTubeService("...", 
TextBox1.Text, "AI39si7HT-...");
        ProfileEntry profile = (ProfileEntry)service.Get(feedUrl);
        lblFirstName.Text = profile.Firstname;
        lblLastName.Text = profile.Lastname;
        lblAge.Text = profile.Age.ToString();
        lblAbout.Text = profile.Description;
        lblRelationship.Text = profile.Relationship;
        lblGender.Text = profile.Gender;
        lblCity.Text = profile.Location.Split(',')[0];
        lblCountry.Text = profile.Location.Split(',')[1];

What is the expected output? What do you see instead?
First name is empty

What version of the product are you using? On what operating system?
.net 2.0

Please provide any additional information below.

Original issue reported on code.google.com by lizi...@gmail.com on 8 Aug 2008 at 8:48

GoogleCodeExporter commented 8 years ago
misspelled firstName in the source, fixed and checked into subversion, 
including DLLs. Feel free to try out and 
report back if this has not fixed your issue. 

Original comment by fman...@gmail.com on 8 Aug 2008 at 12:35

GoogleCodeExporter commented 8 years ago
now in subversion. Will be in any release > 1.2.1.0

Original comment by fman...@gmail.com on 8 Aug 2008 at 2:17