Skip to content

Domai.nr -> Domainr #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions DomainrSharp.1.1.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<owners>Scott Lovegrove</owners>
<projectUrl>https://github.com/ScottIsAFool/DomainrSharp</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A .NET wrapper for the domai.nr API that lets you search for fun and different domain names based on a search word</description>
<summary>A .NET wrapper for the domai.nr API</summary>
<description>A .NET wrapper for the Domainr API that lets you search for fun and different domain names based on a search word</description>
<summary>A .NET wrapper for the Domainr API</summary>
<releaseNotes>1.1 includes new method calls for .NET 4.5 and WinRT versions to allow async/await pattern.</releaseNotes>
<copyright>2012 ScottIsAFool</copyright>
<language>en-GB</language>
Expand All @@ -26,4 +26,4 @@
<file src="DomainrSharp.Silverlight\bin\Release\DomainrSharp.Silverlight.dll" target="lib\sl40\DomainrSharp.Silverlight.dll" />
<file src="DomainrSharp.WinRt\bin\Release\DomainrSharp.WinRT.dll" target="lib\winrt45\DomainrSharp.WinRT.dll" />
</files>
</package>
</package>
6 changes: 3 additions & 3 deletions DomainrSharp/DomainrSharp.nuspec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<!--
<!--
This tokenized .nuspec manifest file is targeting the latest NuGet namespace,
which ensures you can benefit from the latest packaging features.

Expand All @@ -20,8 +20,8 @@ using this tokenized nuspec file.
<id>$id$</id>
<title />
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A .NET wrapper for the domai.nr API that lets you search for fun and different domain names based on a search word</description>
<description>A .NET wrapper for the Domainr API that lets you search for fun and different domain names based on a search word</description>
<tags>domainr domain tld</tags>
</metadata>
<files />
</package>
</package>
4 changes: 2 additions & 2 deletions DomainrSharp/DomainrSharpService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ public class DomainrSharpService : IDomainrSharpService
{
private HttpClient HttpClient { get; set; }

private const string QueryUrl = "http://domai.nr/api/json/search?q={0}";
private const string InfoUrl = "http://domai.nr/api/json/info?q={0}";
private const string QueryUrl = "https://api.domainr.com/v1/search?client_id={your-mashape-key}&q={0}";
private const string InfoUrl = "https://api.domainr.com/v1/info?client_id={your-mashape-key}&q={0}";

public string ClientId { get; set; }

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
DomainrSharp
============

C# Wrapper for Domai.nr. This library is now a portable class library and means it can be used with .NET 4 (4.0.3), Silverlight 4 and above, Windows phone 7.5 and above and Windows Store apps.
C# Wrapper for Domainr. This library is now a portable class library and means it can be used with .NET 4 (4.0.3), Silverlight 4 and above, Windows phone 7.5 and above and Windows Store apps.

## Licence ##
My own licence for this is use it as much as you want, do what you want.
My own licence for this is use it as much as you want, do what you want.