Remove now-unused auth url endpoints

This commit is contained in:
Markus Olsson
2015-09-04 04:27:32 +02:00
parent 1c787c9509
commit 7238112b31
-15
View File
@@ -34,21 +34,6 @@ namespace Octokit
return "authorizations/clients/{0}".FormatUri(clientId);
}
/// <summary>
/// Returns the <see cref="Uri"/> that authorizations for a given client and fingerprint
/// </summary>
/// <param name="clientId">
/// The 20 character OAuth app client key for
/// which to create the token.</param>
/// <param name="fingerprint">
/// A unique string to distinguish an authorization from others created
/// for the same client and user.
/// </param>
public static Uri AuthorizationsForClient(string clientId, string fingerprint)
{
return "authorizations/clients/{0}/{1}".FormatUri(clientId, fingerprint);
}
public static Uri ApplicationAuthorization(string clientId)
{
return "applications/{0}/tokens".FormatUri(clientId);