blob: 266dbce5594e1fe1f38c585fad4df45df5c79174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
//-----------------------------------------------------------------------
// <copyright file="AccessTokenClientCredentialsRequest.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.OAuth2.Messages {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DotNetOpenAuth.Messaging;
using DotNetOpenAuth.OAuth2.ChannelElements;
/// <summary>
/// A request for an access token for a client application that has its
/// own (non-user affiliated) client name and password.
/// </summary>
/// <remarks>
/// This is somewhat analogous to 2-legged OAuth.
/// </remarks>
internal class AccessTokenClientCredentialsRequest : ScopedAccessTokenRequest {
/// <summary>
/// Initializes a new instance of the <see cref="AccessTokenClientCredentialsRequest"/> class.
/// </summary>
/// <param name="tokenEndpoint">The authorization server.</param>
/// <param name="version">The version.</param>
internal AccessTokenClientCredentialsRequest(Uri tokenEndpoint, Version version)
: base(tokenEndpoint, version) {
this.HttpMethods = HttpDeliveryMethods.PostRequest;
}
/// <summary>
/// Gets the type of the grant.
/// </summary>
/// <value>The type of the grant.</value>
internal override GrantType GrantType {
get { return Messages.GrantType.ClientCredentials; }
}
}
}
|