Method | Description | |
---|---|---|
ActivitiesClient ( string communityUrl, |
Initializes a new instance of ActivityRetriever
|
|
CreateActivity ( |
Create a new activity stream entry based on the characteristics in the "activity" object. Note: if the published and/or updated fields in the Activity are set, they must be have the time down to the second with the DateTimeKind field set
|
|
GetActivities ( System.DateTime time, bool after = true, int count = 25, List |
Queries Jive's Activities endpoint for all Activities after "time".
|
|
GetActivitiesCount ( System.DateTime after, int max = 50, bool exclude = false ) : int |
Queries the API for the number of Activities since "after".
|
|
GetDiscoveryChannel ( List |
Return the discovery stream, containing recommended, trending, and matters most items.
|
|
GetFrequentContent ( int count = 20, List |
Return the most frequently viewed content that is visible to the requesting person.
|
|
GetFrequentPeople ( int count = 20, List |
Return the most frequently viewed people that are visible to the requesting person.
|
|
GetFrequentPlaces ( int count = 20, List |
Return the most frequently viewed places that are visible to the requesting person.
|
|
GetRecentContent ( System.DateTime before, int count = 10, List |
Return the most recently viewed content that is visible to the requesting person.
|
|
GetRecentPeople ( int count = 25, List |
Return the most recently viewed people that are visible to the requesting person.
|
|
GetRecentPlaces ( int count = 25, List |
Return the most recently viewed places that are visible to the requesting person.
|
|
GetSocialNews ( System.DateTime before, int count = 5, List |
Return a paginated list of social news for the authenticated user.
|
|
GetSocialPeople ( int count = 25, List |
Return the people most frequently interacted with in the inbox that are visible to the requesting person.
|
public ActivitiesClient ( string communityUrl, |
||
communityUrl | string | The url of the targeted Jive community (e.g. https://jivecommunity.jiveon.com) |
credential | The NetworkCredential containing the username and password for a user in the given Jive Community | |
return | Net.Pokeshot.JiveSdk.Models |
public CreateActivity ( |
||
activity | an Activity object containing the required data to construct a new activity stream entry | |
fields | List |
Names of the fields to be returned |
return |
public GetActivities ( System.DateTime time, bool after = true, int count = 25, List |
||
time | System.DateTime | The time representing the earliest or lates time to consider (depending on the value of "after"). |
after | bool | If true, the request will be made for the times after "time". If false, the request is made for times before "time". |
count | int | Maximum number of activities to return in this request (you may get more activities than this in order to get all of the activities in the last collection)(max is 1000) |
filter | List |
Filter expression(s) used to select matching results (e.g. type(likes,social,profiles,endorsements)) |
fields | List |
The fields to be included in returned activities |
return | List |
public GetActivitiesCount ( System.DateTime after, int max = 50, bool exclude = false ) : int | ||
after | System.DateTime | The oldest date to consider when counting the activities. |
max | int | The maximum number of new activity counts to return. Default is 50. |
exclude | bool | Flag indicating whether activity performed by the user should be omitted. Default is false. |
return | int |
public GetDiscoveryChannel ( List |
||
fields | List |
Fields to be included in returned place entities |
return | List |
public GetFrequentContent ( int count = 20, List |
||
count | int | Maximum number of content entities to return in this request (bounded at 20) |
fields | List |
Fields to be included in returned content entities |
filter | List |
Filter expression(s) used to select matching results (currently supports type only). Since 3.5. |
abridged | bool | Flag indicating that if content.text is requested, it will be abridged (length shortened, HTML tags removed) |
return | List |
public GetFrequentPeople ( int count = 20, List |
||
count | int | Maximum number of person entities to return in this request (bounded at 20) |
fields | List |
Fields to be included in returned person entities |
return | List |
public GetFrequentPlaces ( int count = 20, List |
||
count | int | Maximum number of place entities to return in this request (bounded at 20) |
fields | List |
Fields to be included in returned place entities |
return | List |
public GetRecentContent ( System.DateTime before, int count = 10, List |
||
before | System.DateTime | Date and time representing the maximum "last activity" timestamp. Since 3.5. |
count | int | Maximum number of content entities to return in this request |
fields | List |
Fields to be included in returned content entities |
filter | List |
Filter expression(s) used to select matching results (currently supports type only) |
abridged | bool | Flag indicating that if content.text is requested, it will be abridged (length shortened, HTML tags removed) |
return | List |
public GetRecentPeople ( int count = 25, List |
||
count | int | Maximum number of person entities to return in this request |
fields | List |
Fields to be included in returned person entities |
return | List |
public GetRecentPlaces ( int count = 25, List |
||
count | int | Maximum number of place entities to return in this request |
fields | List |
Fields to be included in returned place entities |
return | List |
public GetSocialNews ( System.DateTime before, int count = 5, List |
||
before | System.DateTime | Date and time in ISO-8601 format that indicates the maximum date. By default is 'now' |
count | int | The maximum number of news to be returned. By default is 5. |
fields | List |
The fields to be returned on each news |
return | List |
public GetSocialPeople ( int count = 25, List |
||
count | int | Maximum number of person entities to return in this request (bounded at 100) |
fields | List |
Fields to be included in returned person entities |
return | List |