gogol-youtube-0.3.0: Google YouTube Data SDK.

Copyright(c) 2015-2016 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.YouTube.Activities.List

Contents

Description

Returns a list of channel activity events that match the request criteria. For example, you can retrieve events associated with a particular channel, events associated with the user's subscriptions and Google+ friends, or the YouTube home page feed, which is customized for each user.

See: YouTube Data API Reference for youtube.activities.list.

Synopsis

REST Resource

type ActivitiesListResource = "youtube" :> ("v3" :> ("activities" :> (QueryParam "part" Text :> (QueryParam "publishedAfter" DateTime' :> (QueryParam "home" Bool :> (QueryParam "mine" Bool :> (QueryParam "regionCode" Text :> (QueryParam "channelId" Text :> (QueryParam "pageToken" Text :> (QueryParam "maxResults" (Textual Word32) :> (QueryParam "publishedBefore" DateTime' :> (QueryParam "alt" AltJSON :> Get '[JSON] ActivityListResponse)))))))))))) Source #

A resource alias for youtube.activities.list method which the ActivitiesList request conforms to.

Creating a Request

activitiesList Source #

Arguments

:: Text

alPart

-> ActivitiesList 

Creates a value of ActivitiesList with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data ActivitiesList Source #

Returns a list of channel activity events that match the request criteria. For example, you can retrieve events associated with a particular channel, events associated with the user's subscriptions and Google+ friends, or the YouTube home page feed, which is customized for each user.

See: activitiesList smart constructor.

Instances

Eq ActivitiesList Source # 
Data ActivitiesList Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ActivitiesList -> c ActivitiesList #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ActivitiesList #

toConstr :: ActivitiesList -> Constr #

dataTypeOf :: ActivitiesList -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ActivitiesList) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ActivitiesList) #

gmapT :: (forall b. Data b => b -> b) -> ActivitiesList -> ActivitiesList #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ActivitiesList -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ActivitiesList -> r #

gmapQ :: (forall d. Data d => d -> u) -> ActivitiesList -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ActivitiesList -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ActivitiesList -> m ActivitiesList #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ActivitiesList -> m ActivitiesList #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ActivitiesList -> m ActivitiesList #

Show ActivitiesList Source # 
Generic ActivitiesList Source # 

Associated Types

type Rep ActivitiesList :: * -> * #

GoogleRequest ActivitiesList Source # 
type Rep ActivitiesList Source # 
type Scopes ActivitiesList Source # 
type Scopes ActivitiesList = (:) Symbol "https://www.googleapis.com/auth/youtube" ((:) Symbol "https://www.googleapis.com/auth/youtube.force-ssl" ((:) Symbol "https://www.googleapis.com/auth/youtube.readonly" ([] Symbol)))
type Rs ActivitiesList Source # 

Request Lenses

alPublishedAfter :: Lens' ActivitiesList (Maybe UTCTime) Source #

The publishedAfter parameter specifies the earliest date and time that an activity could have occurred for that activity to be included in the API response. If the parameter value specifies a day, but not a time, then any activities that occurred that day will be included in the result set. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.

alPart :: Lens' ActivitiesList Text Source #

The part parameter specifies a comma-separated list of one or more activity resource properties that the API response will include. If the parameter identifies a property that contains child properties, the child properties will be included in the response. For example, in an activity resource, the snippet property contains other properties that identify the type of activity, a display title for the activity, and so forth. If you set part=snippet, the API response will also contain all of those nested properties.

alHome :: Lens' ActivitiesList (Maybe Bool) Source #

Set this parameter's value to true to retrieve the activity feed that displays on the YouTube home page for the currently authenticated user.

alMine :: Lens' ActivitiesList (Maybe Bool) Source #

Set this parameter's value to true to retrieve a feed of the authenticated user's activities.

alRegionCode :: Lens' ActivitiesList (Maybe Text) Source #

The regionCode parameter instructs the API to return results for the specified country. The parameter value is an ISO 3166-1 alpha-2 country code. YouTube uses this value when the authorized user's previous activity on YouTube does not provide enough information to generate the activity feed.

alChannelId :: Lens' ActivitiesList (Maybe Text) Source #

The channelId parameter specifies a unique YouTube channel ID. The API will then return a list of that channel's activities.

alPageToken :: Lens' ActivitiesList (Maybe Text) Source #

The pageToken parameter identifies a specific page in the result set that should be returned. In an API response, the nextPageToken and prevPageToken properties identify other pages that could be retrieved.

alMaxResults :: Lens' ActivitiesList Word32 Source #

The maxResults parameter specifies the maximum number of items that should be returned in the result set.

alPublishedBefore :: Lens' ActivitiesList (Maybe UTCTime) Source #

The publishedBefore parameter specifies the date and time before which an activity must have occurred for that activity to be included in the API response. If the parameter value specifies a day, but not a time, then any activities that occurred that day will be excluded from the result set. The value is specified in ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.