Skip to content

This repository is a collection of Node.js-based CLI tools for daily development and work. It contains various utilities that help automate, analyze, and simplify common tasks.

License

Notifications You must be signed in to change notification settings

fishfolkus/automatework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

automatework

nuget build

A Brief Intro

NeuralStock is a .NET Wrapper for calling GoDaddy REST API.

Visit GoDaddy Rest API Docs

Usage

.NET Framework

var options = new GoDaddyClientOptions 
{
    AccessKey = "{key}",
    SecretKey = "{secret}",
    IsTesting = true /* false to use production */
};
var client = new GoDaddyClient(options);

try
{
    var response = await client.CheckDomainAvailable(new DomainAvailable
    {
        domain = "google.com"
    });
}
catch (GodaddyException ex) 
{
    //Godaddy Error Message from the Godaddy API
    Console.WriteLine(ex.ErrorResponse.Message);
    //Error Code
    Console.WriteLine(ex.StatusCode);
}

.NET Core/.NET 5+

Program.cs / Startup.cs

builder.Services.AddGoDaddy(
    configuration.GoDaddyAccessKey,
    configuration.GoDaddySecretKey,
    configuration.Sandbox);

Service Class (or controller)

public class GoDaddyDomainService(GoDaddyClient goDaddyClient)

try
{
    var response = await goDaddyClient.CheckDomainAvailable(new DomainAvailable
    {
        domain = "google.com"
    });
}
catch (GodaddyException ex) 
{
    //Godaddy Error Message from the Godaddy API
    Console.WriteLine(ex.ErrorResponse.Message);
    //Error Code
    Console.WriteLine(ex.StatusCode);
}

Version History

3.1.0

3.0.0

  • Various dependency updates
  • Eliminated new HttpClient instantiation for every API call

⚠️Breaking Changes

  • Renamed Client to GoDaddyClient
  • Constructor now takes GoDaddyClientOptions object (.NET Framework 4.6.2+ only)
  • Dependency injection pattern with builder.Services.AddGoDaddy() registration

2.0.0

  • Dropped explicit support for .NET Core 2.1
  • Updated support to .NET Standard 2.0
  • Added support for .NET 6

Remark

As I have only used the domain features (Suggested Domain, Buy Domain, CheckAvailable, etc.), I haven't tested the other parts of it so feel free to leave an issue if you find something wrong (also welcome to make a pull request). Please provide as much info as you can.

About

This repository is a collection of Node.js-based CLI tools for daily development and work. It contains various utilities that help automate, analyze, and simplify common tasks.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages