C# 클래스 Imgur.API.Models.Impl.OAuth2Token

The response from an OAuth2 Token request.
상속: IOAuth2Token
파일 보기 프로젝트 열기: DamienDennehy/Imgur.API 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
OAuth2Token ( string accessToken, string refreshToken, string tokenType, string accountId, string accountUsername, int expiresIn ) : System

Initializes a new instance of the OAuth2Token class.

메소드 상세

OAuth2Token() 공개 메소드

Initializes a new instance of the OAuth2Token class.
public OAuth2Token ( string accessToken, string refreshToken, string tokenType, string accountId, string accountUsername, int expiresIn ) : System
accessToken string The access token.
refreshToken string The refresh token.
tokenType string The type of token, typically "Bearer".
accountId string The account id.
accountUsername string The account username.
expiresIn int The time in seconds when the token expires. Usually one month from the request.
리턴 System