简体   繁体   中英

How to create a Google account programmatically?

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 .

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();
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM