mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 03:01:31 +00:00
Remove now-unused auth url endpoints
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user