3

Does anybody know how to create gmail account in c# (programmatically). I am refer this link https://developers.google.com/admin-sdk/directory/v1/guides/manage-users.

Rubén
  • 34,714
  • 9
  • 70
  • 166
Anurag Jain
  • 1,371
  • 4
  • 23
  • 34

1 Answers1

5

This the code for create gmail account programmatically in c#:-

Step 1: You should have admin account. Use admin mailid and pwd for create gmail account.

step 2: login in your admin account then go into security tab -> Api Reference -> Enable Api Access.

Step 3: add Google.Gdata.Apps.dll in your project.

Step 4: code:

using Google.GData.Apps;

AppsService appService = new AppsService("example.com","mailid","Password");

try
{
    var a = appService.CreateUser(UserName,GivenName,FamilyName,Password);
}
catch (AppsException ex)
{
    response = ex.Reason.ToString() + " " + ex.ErrorCode.ToString();
}
Marco
  • 56,740
  • 14
  • 129
  • 152
Anurag Jain
  • 1,371
  • 4
  • 23
  • 34