Свойство | Type | Description | |
---|---|---|---|
AccountEndpoint | System |
Méthode | Description | |
---|---|---|
AccountEndpoint ( IApiClient apiClient ) : System |
Initializes a new instance of the AccountEndpoint class.
|
|
DeleteAlbumAsync ( string albumId, string username = "me" ) : Task |
Delete an Album with a given id. OAuth authentication required.
|
|
DeleteCommentAsync ( int commentId, string username = "me" ) : Task |
Delete a comment. OAuth authentication required.
|
|
DeleteImageAsync ( string imageId, string username = "me" ) : Task |
Deletes an Image. You are required to be logged in as the user whom created the image. OAuth authentication required.
|
|
GetAccountAsync ( string username = "me" ) : Task |
Request standard user information. If you need the username for the account that is logged in, it is returned in the request for an access token.
|
|
GetAccountFavoritesAsync ( ) : Task |
Returns the users favorited images. OAuth authentication required.
|
|
GetAccountGalleryFavoritesAsync ( string username = "me", int page = null, AccountGallerySortOrder sort = AccountGallerySortOrder.Newest ) : Task |
Return the images the user has favorited in the gallery.
|
|
GetAccountSettingsAsync ( ) : Task |
Returns the account settings. OAuth authentication required.
|
|
GetAccountSubmissionsAsync ( string username = "me", int page = null ) : Task |
Return the images a user has submitted to the gallery.
|
|
GetAlbumAsync ( string albumId, string username = "me" ) : Task |
Get additional information about an album, this works the same as the Album Endpoint.
|
|
GetAlbumCountAsync ( string username = "me" ) : Task |
Return a list of all of the album IDs.
|
|
GetAlbumIdsAsync ( string username = "me", int page = null ) : Task |
Return a list of all of the album IDs.
|
|
GetAlbumsAsync ( string username = "me", int page = null ) : Task |
Get all the albums associated with the account. Must be logged in as the user to see secret and hidden albums.
|
|
GetCommentAsync ( int commentId, string username = "me" ) : Task |
Return information about a specific comment.
|
|
GetCommentCountAsync ( string username = "me" ) : Task |
Return a count of all of the comments associated with the account.
|
|
GetCommentIdsAsync ( string username = "me", CommentSortOrder sort = CommentSortOrder.Newest, int page = null ) : Task |
Return a list of all of the comment IDs.
|
|
GetCommentsAsync ( string username = "me", CommentSortOrder sort = CommentSortOrder.Newest, int page = null ) : Task |
Return the comments the user has created.
|
|
GetGalleryProfileAsync ( string username = "me" ) : Task |
The totals for a users gallery information.
|
|
GetImageAsync ( string imageId, string username = "me" ) : Task |
Return information about a specific image.
|
|
GetImageCountAsync ( string username = "me" ) : Task |
Returns the total number of images associated with the account. OAuth authentication required.
|
|
GetImageIdsAsync ( string username = "me", int page = null ) : Task |
Returns a list of Image IDs that are associated with the account. OAuth authentication required.
|
|
GetImagesAsync ( string username = "me", int page = null ) : Task |
Return all of the images associated with the account. You can page through the images by setting the page, this defaults to 0. OAuth authentication required.
|
|
GetNotificationsAsync ( bool newNotifications = true ) : Task |
Returns all of the reply notifications for the user. OAuth authentication required.
|
|
SendVerificationEmailAsync ( ) : Task |
Sends an email to the user to verify that their email is valid to upload to gallery. OAuth authentication required.
|
|
UpdateAccountSettingsAsync ( string bio = null, bool publicImages = null, bool messagingEnabled = null, AlbumPrivacy albumPrivacy = null, bool acceptedGalleryTerms = null, string username = null, bool showMature = null, bool newsletterSubscribed = null ) : Task |
Updates the account settings for a given user. OAuth authentication required.
|
|
VerifyEmailAsync ( ) : Task |
Checks to see if user has verified their email address. OAuth authentication required.
|
Méthode | Description | |
---|---|---|
AccountEndpoint ( IApiClient apiClient, |
Initializes a new instance of the AccountEndpoint class.
|
public AccountEndpoint ( IApiClient apiClient ) : System | ||
apiClient | IApiClient | The type of client that will be used for authentication. |
Résultat | System |
public DeleteAlbumAsync ( string albumId, string username = "me" ) : Task |
||
albumId | string | The album id. |
username | string | The user account. Default: me |
Résultat | Task |
public DeleteCommentAsync ( int commentId, string username = "me" ) : Task |
||
commentId | int | The comment id. |
username | string | The user account. Default: me |
Résultat | Task |
public DeleteImageAsync ( string imageId, string username = "me" ) : Task |
||
imageId | string | The image id. |
username | string | The user account. Default: me |
Résultat | Task |
public GetAccountAsync ( string username = "me" ) : Task |
||
username | string | The user account. Default: me |
Résultat | Task |
public GetAccountFavoritesAsync ( ) : Task |
||
Résultat | Task |
public GetAccountGalleryFavoritesAsync ( string username = "me", int page = null, AccountGallerySortOrder sort = AccountGallerySortOrder.Newest ) : Task |
||
username | string | The user account. Default: me |
page | int | Set the page number so you don't have to retrieve all the data at once. Default: null |
sort | AccountGallerySortOrder | The order that the account gallery should be sorted by. Default: Newest |
Résultat | Task |
public GetAccountSubmissionsAsync ( string username = "me", int page = null ) : Task |
||
username | string | The user account. Default: me |
page | int | Set the page number so you don't have to retrieve all the data at once. Default: null |
Résultat | Task |
public GetAlbumAsync ( string albumId, string username = "me" ) : Task |
||
albumId | string | The album id. |
username | string | The user account. Default: me |
Résultat | Task |
public GetAlbumCountAsync ( string username = "me" ) : Task |
||
username | string | The user account. Default: me |
Résultat | Task |
public GetAlbumIdsAsync ( string username = "me", int page = null ) : Task |
||
username | string | The user account. Default: me |
page | int | Allows you to set the page number so you don't have to retrieve all the data at once. Default: null |
Résultat | Task |
public GetAlbumsAsync ( string username = "me", int page = null ) : Task |
||
username | string | The user account. Default: me |
page | int | Allows you to set the page number so you don't have to retrieve all the data at once. Default: null |
Résultat | Task |
public GetCommentAsync ( int commentId, string username = "me" ) : Task |
||
commentId | int | The comment id. |
username | string | The user account. Default: me |
Résultat | Task |
public GetCommentCountAsync ( string username = "me" ) : Task |
||
username | string | The user account. Default: me |
Résultat | Task |
public GetCommentIdsAsync ( string username = "me", CommentSortOrder sort = CommentSortOrder.Newest, int page = null ) : Task |
||
username | string | The user account. Default: me |
sort | CommentSortOrder | The order that the comments should be sorted by. Default: Newest |
page | int | Allows you to set the page number so you don't have to retrieve all the data at once. Default: null |
Résultat | Task |
public GetCommentsAsync ( string username = "me", CommentSortOrder sort = CommentSortOrder.Newest, int page = null ) : Task |
||
username | string | The user account. Default: me |
sort | CommentSortOrder | The order that the comments should be sorted by. Default: Newest |
page | int | Allows you to set the page number so you don't have to retrieve all the data at once. Default: null |
Résultat | Task |
public GetGalleryProfileAsync ( string username = "me" ) : Task |
||
username | string | The user account. Default: me |
Résultat | Task |
public GetImageAsync ( string imageId, string username = "me" ) : Task |
||
imageId | string | The image's id. |
username | string | The user account. Default: me |
Résultat | Task |
public GetImageCountAsync ( string username = "me" ) : Task |
||
username | string | |
Résultat | Task |
public GetImageIdsAsync ( string username = "me", int page = null ) : Task |
||
username | string | The user account. Default: me |
page | int | Allows you to set the page number so you don't have to retrieve all the data at once. Default: null |
Résultat | Task |
public GetImagesAsync ( string username = "me", int page = null ) : Task |
||
username | string | The user account. Default: me |
page | int | Allows you to set the page number so you don't have to retrieve all the data at once. Default: null |
Résultat | Task |
public GetNotificationsAsync ( bool newNotifications = true ) : Task |
||
newNotifications | bool | false for all notifications, true for only non-viewed notification. Default is true. |
Résultat | Task |
public SendVerificationEmailAsync ( ) : Task |
||
Résultat | Task |
public UpdateAccountSettingsAsync ( string bio = null, bool publicImages = null, bool messagingEnabled = null, AlbumPrivacy albumPrivacy = null, bool acceptedGalleryTerms = null, string username = null, bool showMature = null, bool newsletterSubscribed = null ) : Task |
||
bio | string | The biography of the user, is displayed in the gallery profile page. |
publicImages | bool | Set the users images to private or public by default. |
messagingEnabled | bool | Allows the user to enable / disable private messages. |
albumPrivacy | AlbumPrivacy | Sets the default privacy level of albums the users creates. |
acceptedGalleryTerms | bool | The user agreement to the Imgur Gallery terms. |
username | string | A valid Imgur username (between 4 and 63 alphanumeric characters). |
showMature | bool | Toggle display of mature images in gallery list endpoints. |
newsletterSubscribed | bool | Toggle subscription to email newsletter. |
Résultat | Task |