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.

Anurag Jain
  • 1,323
  • 4
  • 22
  • 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
  • 53,280
  • 13
  • 123
  • 142
Anurag Jain
  • 1,323
  • 4
  • 22
  • 34